====== ThinkGeo.MapSuite.iOSEdition.MapView ======
{{section>upgrade_map_suite_to_10.0}}
This class represents the map control.
===== Inheritance Hierarchy =====
*System.Object
*Foundation.NSObject
*UIKit.UIResponder
*UIKit.UIView
***ThinkGeo.MapSuite.iOSEdition.MapView**
===== Members Summary =====
==== Public Constructors ====
** {{wiki:PublicMethod.gif|}} MapView() **
Initializes a new instance of the class.
== Remarks ==
N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} MapView(CGRect) **
Initializes a new instance of the class.
== Remarks ==
This constructor is used to programmatically create a new instance of UIView with the specified dimension in the frame. The object will only be displayed once it has been added to a view hierarchy by calling AddSubview in a containing view.This constructor is not invoked when deserializing objects from storyboards or XIB filesinstead the constructor that takes an NSCoder parameter is invoked.
== Parameters ==
* //frame//
* Type:CGRect
* Description:Frame used by the view, expressed in iOS points.
==== Protected Constructors ====
==== Public Methods ====
** {{wiki:PublicMethod.gif|}} LayoutSubviews() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} Close() **
Closes this instance.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} GetSnappedZoomLevelIndex(Double) **
Gets the index of the snapped zoom level.
== Remarks ==
N/A
== Return Value ==
* Type:Int32
* Description:N/A
== Parameters ==
* //scale//
* Type:Double
* Description:The scale.
** {{wiki:PublicMethod.gif|}} CenterAt(Feature) **
Locates the map center to the specified feature.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //feature//
* Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]]
* Description:The feature.
** {{wiki:PublicMethod.gif|}} CenterAt(Double,Double) **
Locates the map center to the specified world point.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //worldX//
* Type:Double
* Description:The world x.
* //worldY//
* Type:Double
* Description:The world y.
** {{wiki:PublicMethod.gif|}} CenterAt(PointShape) **
Locates the map center to the specified world point.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //worldCenter//
* Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]]
* Description:The world center.
** {{wiki:PublicMethod.gif|}} Pan(PanDirection,Int32) **
Pans the specified direction.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //direction//
* Type:[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]]
* Description:The direction.
* //percentage//
* Type:Int32
* Description:The percentage.
** {{wiki:PublicMethod.gif|}} Refresh(IEnumerable) **
Refreshes the specified overlays.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //overlays//
* Type:IEnumerable<[[ThinkGeo.MapSuite.iOSEdition.Overlay|Overlay]]>
* Description:The overlays.
** {{wiki:PublicMethod.gif|}} Refresh() **
Refreshes this instance.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} ZoomIn(Int32) **
Zooms the map in for one level.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //percentage//
* Type:Int32
* Description:The percentage.
** {{wiki:PublicMethod.gif|}} ZoomOut(Int32) **
Zooms the map in by the provided percentage.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //percentage//
* Type:Int32
* Description:The percentage.
** {{wiki:PublicMethod.gif|}} ZoomTo(Feature) **
Zooms the map to specified feature.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //feature//
* Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]]
* Description:The feature.
** {{wiki:PublicMethod.gif|}} ZoomTo(BaseShape) **
Zooms the map to specified feature.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //targetShape//
* Type:[[ThinkGeo.MapSuite.Core.BaseShape|BaseShape]]
* Description:The target shape.
** {{wiki:PublicMethod.gif|}} ZoomToScale(Double) **
Zooms the map to specified scale.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //targetScale//
* Type:Double
* Description:The target scale.
** {{wiki:PublicMethod.gif|}} ZoomTo(PointShape,Double) **
This method zooms current map to a specified position and scale.
== Remarks ==
When calling this method, it doesn't refresh existing Tiles on the current map. For example, if using a TileOverlay such as LayerOverlay; a layer style is changed, Refresh method is proper to call.
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //worldCenter//
* Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]]
* Description:A world center to zoom the map to.
* //scale//
* Type:Double
* Description:A double value indicates the scale to zoom the map to.
** {{wiki:PublicMethod.gif|}} ZoomInByAnchorPoint(ScreenPointF) **
Zooms the in by anchor point.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touchPosition//
* Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]]
* Description:The touch position.
** {{wiki:PublicMethod.gif|}} ToWorldCoordinate(ScreenPointF) **
Converts the provided screen points to world points.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]]
* Description:A world coordinate that is converted.
== Parameters ==
* //screenCoordinate//
* Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]]
* Description:Screen point to be converted.
** {{wiki:PublicMethod.gif|}} ToScreenCoordinate(PointShape) **
Converts the provided world points to screen points.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]]
* Description:A screen coordinate that is converted.
== Parameters ==
* //worldCoordinate//
* Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]]
* Description:World point to be converted.
** {{wiki:PublicMethod.gif|}} ZoomToPreviousExtent() **
Zooms to previous extent.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} ZoomToNextExtent() **
Zooms to next extent.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} SystemLayoutSizeFittingSize(CGSize,Single,Single) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGSize
* Description:N/A
== Parameters ==
* //targetSize//
* Type:CGSize
* Description:N/A
* //horizontalFittingPriority//
* Type:Single
* Description:N/A
* //verticalFittingPriority//
* Type:Single
* Description:N/A
** {{wiki:PublicMethod.gif|}} TintColorDidChange() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} TraitCollectionDidChange(UITraitCollection) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //previousTraitCollection//
* Type:UITraitCollection
* Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateConstraints() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} UpdateConstraintsIfNeeded() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} ViewWithTag(nint) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
* Description:N/A
== Parameters ==
* //tag//
* Type:nint
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillMoveToSuperview(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //newsuper//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillMoveToWindow(UIWindow) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //window//
* Type:UIWindow
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillRemoveSubview(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //uiview//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} Add(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddSubviews(UIView[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //views//
* Type:UIView[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetEnumerator() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IEnumerator
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityActivate() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AddConstraint(NSLayoutConstraint) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //constraint//
* Type:NSLayoutConstraint
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddConstraints(NSLayoutConstraint[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //constraints//
* Type:NSLayoutConstraint[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddGestureRecognizer(UIGestureRecognizer) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //gestureRecognizer//
* Type:UIGestureRecognizer
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddMotionEffect(UIMotionEffect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //effect//
* Type:UIMotionEffect
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddSubview(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} AlignmentRectForFrame(CGRect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //frame//
* Type:CGRect
* Description:N/A
** {{wiki:PublicMethod.gif|}} BringSubviewToFront(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} ContentCompressionResistancePriority(UILayoutConstraintAxis) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Single
* Description:N/A
== Parameters ==
* //axis//
* Type:UILayoutConstraintAxis
* Description:N/A
** {{wiki:PublicMethod.gif|}} ContentHuggingPriority(UILayoutConstraintAxis) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Single
* Description:N/A
== Parameters ==
* //axis//
* Type:UILayoutConstraintAxis
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertPointFromCoordinateSpace(CGPoint,IUICoordinateSpace) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //coordinateSpace//
* Type:IUICoordinateSpace
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertPointFromView(CGPoint,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //fromView//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertPointToCoordinateSpace(CGPoint,IUICoordinateSpace) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //coordinateSpace//
* Type:IUICoordinateSpace
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertPointToView(CGPoint,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //toView//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertRectFromCoordinateSpace(CGRect,IUICoordinateSpace) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //coordinateSpace//
* Type:IUICoordinateSpace
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertRectFromView(CGRect,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //fromView//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertRectToCoordinateSpace(CGRect,IUICoordinateSpace) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //coordinateSpace//
* Type:IUICoordinateSpace
* Description:N/A
** {{wiki:PublicMethod.gif|}} ConvertRectToView(CGRect,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //toView//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} DecodeRestorableState(NSCoder) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //coder//
* Type:NSCoder
* Description:N/A
** {{wiki:PublicMethod.gif|}} Draw(CGRect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
** {{wiki:PublicMethod.gif|}} DrawRect(CGRect,UIViewPrintFormatter) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //area//
* Type:CGRect
* Description:N/A
* //formatter//
* Type:UIViewPrintFormatter
* Description:N/A
** {{wiki:PublicMethod.gif|}} DrawViewHierarchy(CGRect,Boolean) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //afterScreenUpdates//
* Type:Boolean
* Description:N/A
** {{wiki:PublicMethod.gif|}} EncodeRestorableState(NSCoder) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //coder//
* Type:NSCoder
* Description:N/A
** {{wiki:PublicMethod.gif|}} EncodeTo(NSCoder) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //encoder//
* Type:NSCoder
* Description:N/A
** {{wiki:PublicMethod.gif|}} ExchangeSubview(nint,nint) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //atIndex//
* Type:nint
* Description:N/A
* //withSubviewAtIndex//
* Type:nint
* Description:N/A
** {{wiki:PublicMethod.gif|}} ExerciseAmbiguityInLayout() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} FrameForAlignmentRect(CGRect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
* Description:N/A
== Parameters ==
* //alignmentRect//
* Type:CGRect
* Description:N/A
** {{wiki:PublicMethod.gif|}} GestureRecognizerShouldBegin(UIGestureRecognizer) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //gestureRecognizer//
* Type:UIGestureRecognizer
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetConstraintsAffectingLayout(UILayoutConstraintAxis) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSLayoutConstraint[]
* Description:N/A
== Parameters ==
* //axis//
* Type:UILayoutConstraintAxis
* Description:N/A
** {{wiki:PublicMethod.gif|}} HitTest(CGPoint,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //uievent//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} InsertSubview(UIView,nint) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
* //atIndex//
* Type:nint
* Description:N/A
** {{wiki:PublicMethod.gif|}} InsertSubviewAbove(UIView,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
* //siblingSubview//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} InsertSubviewBelow(UIView,UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
* //siblingSubview//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateIntrinsicContentSize() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} IsDescendantOfView(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} LayoutIfNeeded() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} LayoutMarginsDidChange() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} MovedToSuperview() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} MovedToWindow() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} NeedsUpdateConstraints() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} PointInside(CGPoint,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //point//
* Type:CGPoint
* Description:N/A
* //uievent//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveConstraint(NSLayoutConstraint) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //constraint//
* Type:NSLayoutConstraint
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveConstraints(NSLayoutConstraint[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //constraints//
* Type:NSLayoutConstraint[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveFromSuperview() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} RemoveGestureRecognizer(UIGestureRecognizer) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //gestureRecognizer//
* Type:UIGestureRecognizer
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveMotionEffect(UIMotionEffect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //effect//
* Type:UIMotionEffect
* Description:N/A
** {{wiki:PublicMethod.gif|}} ResizableSnapshotView(CGRect,Boolean,UIEdgeInsets) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
* //afterScreenUpdates//
* Type:Boolean
* Description:N/A
* //capInsets//
* Type:UIEdgeInsets
* Description:N/A
** {{wiki:PublicMethod.gif|}} SendSubviewToBack(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //view//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetContentCompressionResistancePriority(Single,UILayoutConstraintAxis) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //priority//
* Type:Single
* Description:N/A
* //axis//
* Type:UILayoutConstraintAxis
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetContentHuggingPriority(Single,UILayoutConstraintAxis) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //priority//
* Type:Single
* Description:N/A
* //axis//
* Type:UILayoutConstraintAxis
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetNeedsDisplay() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} SetNeedsDisplayInRect(CGRect) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //rect//
* Type:CGRect
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetNeedsLayout() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} SetNeedsUpdateConstraints() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} SizeThatFits(CGSize) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGSize
* Description:N/A
== Parameters ==
* //size//
* Type:CGSize
* Description:N/A
** {{wiki:PublicMethod.gif|}} SizeToFit() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} SnapshotView(Boolean) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
* Description:N/A
== Parameters ==
* //afterScreenUpdates//
* Type:Boolean
* Description:N/A
** {{wiki:PublicMethod.gif|}} SubviewAdded(UIView) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //uiview//
* Type:UIView
* Description:N/A
** {{wiki:PublicMethod.gif|}} SystemLayoutSizeFittingSize(CGSize) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGSize
* Description:N/A
== Parameters ==
* //size//
* Type:CGSize
* Description:N/A
** {{wiki:PublicMethod.gif|}} AccessibilityDecrement() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityElementDidBecomeFocused() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityElementDidLoseFocus() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityElementIsFocused() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityIncrement() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityPerformEscape() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityPerformMagicTap() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AccessibilityScroll(UIAccessibilityScrollDirection) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //direction//
* Type:UIAccessibilityScrollDirection
* Description:N/A
** {{wiki:PublicMethod.gif|}} BecomeFirstResponder() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} CanPerform(Selector,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //action//
* Type:Selector
* Description:N/A
* //withSender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} Copy(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} Cut(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} Delete(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetTargetForAction(Selector,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //action//
* Type:Selector
* Description:N/A
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} MakeTextWritingDirectionLeftToRight(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} MakeTextWritingDirectionRightToLeft(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} MotionBegan(UIEventSubtype,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //motion//
* Type:UIEventSubtype
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} MotionCancelled(UIEventSubtype,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //motion//
* Type:UIEventSubtype
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} MotionEnded(UIEventSubtype,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //motion//
* Type:UIEventSubtype
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} Paste(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} ReloadInputViews() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} RemoteControlReceived(UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //theEvent//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} ResignFirstResponder() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} RestoreUserActivityState(NSUserActivity) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //activity//
* Type:NSUserActivity
* Description:N/A
** {{wiki:PublicMethod.gif|}} Select(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} SelectAll(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} ToggleBoldface(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} ToggleItalics(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} ToggleUnderline(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sender//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} TouchesBegan(NSSet,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touches//
* Type:NSSet
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} TouchesCancelled(NSSet,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touches//
* Type:NSSet
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} TouchesEnded(NSSet,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touches//
* Type:NSSet
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} TouchesMoved(NSSet,UIEvent) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touches//
* Type:NSSet
* Description:N/A
* //evt//
* Type:UIEvent
* Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateUserActivityState(NSUserActivity) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //activity//
* Type:NSUserActivity
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSThread,NSObject,Boolean,NSString[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //selector//
* Type:Selector
* Description:N/A
* //onThread//
* Type:NSThread
* Description:N/A
* //withObject//
* Type:NSObject
* Description:N/A
* //waitUntilDone//
* Type:Boolean
* Description:N/A
* //nsRunLoopModes//
* Type:NSString[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //aSelector//
* Type:Selector
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //aSelector//
* Type:Selector
* Description:N/A
* //anObject//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSObject,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //aSelector//
* Type:Selector
* Description:N/A
* //object1//
* Type:NSObject
* Description:N/A
* //object2//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveObserver(NSObject,NSString,IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:NSString
* Description:N/A
* //context//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveObserver(NSObject,String,IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:String
* Description:N/A
* //context//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveObserver(NSObject,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveObserver(NSObject,String) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:String
* Description:N/A
** {{wiki:PublicMethod.gif|}} RespondsToSelector(Selector) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //sel//
* Type:Selector
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetNilValueForKey(NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //key//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetValueForKey(NSObject,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //value//
* Type:NSObject
* Description:N/A
* //key//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetValueForKeyPath(NSObject,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //value//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetValueForUndefinedKey(NSObject,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //value//
* Type:NSObject
* Description:N/A
* //undefinedKey//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetValuesForKeysWithDictionary(NSDictionary) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //keyedValues//
* Type:NSDictionary
* Description:N/A
** {{wiki:PublicMethod.gif|}} ValueForKey(NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //key//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} ValueForKeyPath(NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //keyPath//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} ValueForUndefinedKey(NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //key//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillChange(NSKeyValueChange,NSIndexSet,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //changeKind//
* Type:NSKeyValueChange
* Description:N/A
* //indexes//
* Type:NSIndexSet
* Description:N/A
* //forKey//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillChange(NSString,NSKeyValueSetMutationKind,NSSet) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //forKey//
* Type:NSString
* Description:N/A
* //mutationKind//
* Type:NSKeyValueSetMutationKind
* Description:N/A
* //objects//
* Type:NSSet
* Description:N/A
** {{wiki:PublicMethod.gif|}} WillChangeValue(String) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //forKey//
* Type:String
* Description:N/A
** {{wiki:PublicMethod.gif|}} Dispose() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} ConformsToProtocol(IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //protocol//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} DangerousRelease() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} DangerousRetain() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} DangerousAutorelease() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} GetNativeField(String) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
* //name//
* Type:String
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetNativeField(String,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //name//
* Type:String
* Description:N/A
* //value//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} AwakeFromNib() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} BeginInvokeOnMainThread(Selector,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sel//
* Type:Selector
* Description:N/A
* //obj//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} InvokeOnMainThread(Selector,NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sel//
* Type:Selector
* Description:N/A
* //obj//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} BeginInvokeOnMainThread(Action) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //action//
* Type:Action
* Description:N/A
** {{wiki:PublicMethod.gif|}} InvokeOnMainThread(Action) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //action//
* Type:Action
* Description:N/A
** {{wiki:PublicMethod.gif|}} SetValueForKeyPath(IntPtr,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //handle//
* Type:IntPtr
* Description:N/A
* //keyPath//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Int32
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //obj//
* Type:Object
* Description:N/A
** {{wiki:PublicMethod.gif|}} Equals(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //obj//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} Invoke(Action,Double) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //action//
* Type:Action
* Description:N/A
* //delay//
* Type:Double
* Description:N/A
** {{wiki:PublicMethod.gif|}} Invoke(Action,TimeSpan) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //action//
* Type:Action
* Description:N/A
* //delay//
* Type:TimeSpan
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddObserver(String,NSKeyValueObservingOptions,Action) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IDisposable
* Description:N/A
== Parameters ==
* //key//
* Type:String
* Description:N/A
* //options//
* Type:NSKeyValueObservingOptions
* Description:N/A
* //observer//
* Type:Action
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddObserver(NSString,NSKeyValueObservingOptions,Action) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IDisposable
* Description:N/A
== Parameters ==
* //key//
* Type:NSString
* Description:N/A
* //options//
* Type:NSKeyValueObservingOptions
* Description:N/A
* //observer//
* Type:Action
* Description:N/A
** {{wiki:PublicMethod.gif|}} Init() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} AddObserver(NSObject,NSString,NSKeyValueObservingOptions,IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:NSString
* Description:N/A
* //options//
* Type:NSKeyValueObservingOptions
* Description:N/A
* //context//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} AddObserver(NSObject,String,NSKeyValueObservingOptions,IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //observer//
* Type:NSObject
* Description:N/A
* //keyPath//
* Type:String
* Description:N/A
* //options//
* Type:NSKeyValueObservingOptions
* Description:N/A
* //context//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} Copy() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} DidChange(NSKeyValueChange,NSIndexSet,NSString) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //changeKind//
* Type:NSKeyValueChange
* Description:N/A
* //indexes//
* Type:NSIndexSet
* Description:N/A
* //forKey//
* Type:NSString
* Description:N/A
** {{wiki:PublicMethod.gif|}} DidChange(NSString,NSKeyValueSetMutationKind,NSSet) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //forKey//
* Type:NSString
* Description:N/A
* //mutationKind//
* Type:NSKeyValueSetMutationKind
* Description:N/A
* //objects//
* Type:NSSet
* Description:N/A
** {{wiki:PublicMethod.gif|}} DidChangeValue(String) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //forKey//
* Type:String
* Description:N/A
** {{wiki:PublicMethod.gif|}} DoesNotRecognizeSelector(Selector) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //sel//
* Type:Selector
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetDictionaryOfValuesFromKeys(NSString[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSDictionary
* Description:N/A
== Parameters ==
* //keys//
* Type:NSString[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetNativeHash() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:nuint
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} IsEqual(NSObject) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //anObject//
* Type:NSObject
* Description:N/A
** {{wiki:PublicMethod.gif|}} IsKindOfClass(Class) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //aClass//
* Type:Class
* Description:N/A
** {{wiki:PublicMethod.gif|}} IsMemberOfClass(Class) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
* Description:N/A
== Parameters ==
* //aClass//
* Type:Class
* Description:N/A
** {{wiki:PublicMethod.gif|}} MutableCopy() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
* Description:N/A
== Parameters ==
** {{wiki:PublicMethod.gif|}} ObserveValue(NSString,NSObject,NSDictionary,IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //keyPath//
* Type:NSString
* Description:N/A
* //ofObject//
* Type:NSObject
* Description:N/A
* //change//
* Type:NSDictionary
* Description:N/A
* //context//
* Type:IntPtr
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSObject,Double,NSString[]) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //selector//
* Type:Selector
* Description:N/A
* //withObject//
* Type:NSObject
* Description:N/A
* //afterDelay//
* Type:Double
* Description:N/A
* //nsRunLoopModes//
* Type:NSString[]
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSObject,Double) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //selector//
* Type:Selector
* Description:N/A
* //withObject//
* Type:NSObject
* Description:N/A
* //delay//
* Type:Double
* Description:N/A
** {{wiki:PublicMethod.gif|}} PerformSelector(Selector,NSThread,NSObject,Boolean) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //selector//
* Type:Selector
* Description:N/A
* //onThread//
* Type:NSThread
* Description:N/A
* //withObject//
* Type:NSObject
* Description:N/A
* //waitUntilDone//
* Type:Boolean
* Description:N/A
** {{wiki:PublicMethod.gif|}} GetType() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Type
* Description:N/A
== Parameters ==
==== Protected Methods ====
** {{wiki:ProtectedMethod.gif|}} OnLongPress(UIGestureRecognizer) **
Called when [long press].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnSingleTap(UIGestureRecognizer) **
Called when [single tap].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnDoubleTap(UIGestureRecognizer) **
Called when [double tap].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnTouchMove(UIGestureRecognizer) **
Called when [touch move].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnTouchUp(UIGestureRecognizer) **
Called when [touch up].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnTouchDown(UIGestureRecognizer) **
Called when [touch down].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} OnTouchPinch(UIGestureRecognizer) **
Called when [touch pinch].
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:UIGestureRecognizer
* Description:The e.
** {{wiki:ProtectedMethod.gif|}} Dispose(Boolean) **
Releases the resources used by the UIView object.
== Remarks ==
This Dispose method releases the resources used by the UIView class.This method is called by both the Dispose() method and the object finalizer (Finalize). When invoked by the Dispose method, the parameter disposing is set to and any managed object references that this object holds are also disposed or released; when invoked by the object finalizer, on the finalizer thread the value is set to . Calling the Dispose method when you are finished using the UIView ensures that all external resources used by this managed object are released as soon as possible. Once you have invoked the Dispose method, the object is no longer useful and you should no longer make any calls to it. For more information on how to override this method and on the Dispose/IDisposable pattern, read the ``Implementing a Dispose Method'' document at http:msdn.microsoft.com/en-us/library/fs2xkftw.aspx
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //disposing//
* Type:Boolean
* Description:If set to , the method is invoked directly and will dispose manage and unmanaged resources; If set to the method is being called by the garbage collector finalizer and should only release unmanaged resources.
** {{wiki:ProtectedMethod.gif|}} PanCore(PanDirection,Int32) **
This function will pan the currentExtent based on a direction and percentage.
== Remarks ==
This method will change the current extent by panning according to the direction and percentage specified.
== Return Value ==
* Type:Void
* Description:None.
== Parameters ==
* //direction//
* Type:[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]]
* Description:This parameter is the direction in which you want to pan.
* //percentage//
* Type:Int32
* Description:This parameter is the percentage by which you want to pan.
** {{wiki:ProtectedMethod.gif|}} RefreshCore() **
Refreshes current map control.
== Remarks ==
Refreshes all the existing overlays and map tools.
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:ProtectedMethod.gif|}} ZoomInCore(Int32) **
Zooms the map in by the provided percentage.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //percentage//
* Type:Int32
* Description:A scale to zoom the map in.
** {{wiki:ProtectedMethod.gif|}} ZoomOutCore(Int32) **
Zooms the map out by the provided percentage.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //percentage//
* Type:Int32
* Description:A scale to zoom the map in.
** {{wiki:ProtectedMethod.gif|}} ZoomInByAnchorPointCore(ScreenPointF) **
Zooms the in by anchor point core.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //touchPosition//
* Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]]
* Description:The touch position.
** {{wiki:ProtectedMethod.gif|}} ZoomToCore(RectangleShape) **
Zooms the map in by the provided extent and locates to extent.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //extent//
* Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]
* Description:The extent.
** {{wiki:ProtectedMethod.gif|}} ZoomToScaleCore(Double) **
This method zooms current map to a specified scale.
== Remarks ==
When calling this method, it doesn't refresh existing Tiles on the current map. For example, if using a TileOverlay such as LayerOverlay; a layer style is changed, Refresh method is proper to call.
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //targetScale//
* Type:Double
* Description:A double value indicates the scale to zoom the map to.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanged(CurrentExtentChangedMapViewEventArgs) **
Raises the event.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:[[ThinkGeo.MapSuite.iOSEdition.CurrentExtentChangedMapViewEventArgs|CurrentExtentChangedMapViewEventArgs]]
* Description:The instance containing the event data.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanging(CurrentExtentChangingMapViewEventArgs) **
Raises the event.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:[[ThinkGeo.MapSuite.iOSEdition.CurrentExtentChangingMapViewEventArgs|CurrentExtentChangingMapViewEventArgs]]
* Description:The instance containing the event data.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanging(CurrentScaleChangingMapViewEventArgs) **
Raises the event.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:[[ThinkGeo.MapSuite.iOSEdition.CurrentScaleChangingMapViewEventArgs|CurrentScaleChangingMapViewEventArgs]]
* Description:The instance containing the event data.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanged(CurrentScaleChangedMapViewEventArgs) **
Raises the event.
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //e//
* Type:[[ThinkGeo.MapSuite.iOSEdition.CurrentScaleChangedMapViewEventArgs|CurrentScaleChangedMapViewEventArgs]]
* Description:The instance containing the event data.
** {{wiki:ProtectedMethod.gif|}} Finalize() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:ProtectedMethod.gif|}} MarkDirty() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:ProtectedMethod.gif|}} InitializeHandle(IntPtr) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //handle//
* Type:IntPtr
* Description:N/A
** {{wiki:ProtectedMethod.gif|}} InitializeHandle(IntPtr,String) **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
* //handle//
* Type:IntPtr
* Description:N/A
* //initSelector//
* Type:String
* Description:N/A
** {{wiki:ProtectedMethod.gif|}} ClearHandle() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Void
* Description:N/A
== Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Object
* Description:N/A
== Parameters ==
==== Public Properties ====
** {{wiki:PublicProperty.gif|}} CurrentExtent **
Gets or sets the current extent for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]
** {{wiki:PublicProperty.gif|}} RestrictExtent **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]
** {{wiki:PublicProperty.gif|}} CurrentScale **
Gets the current scale for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:Double
** {{wiki:PublicProperty.gif|}} AdornmentOverlay **
Gets the adornment overlay for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.iOSEdition.AdornmentOverlay|AdornmentOverlay]]
** {{wiki:PublicProperty.gif|}} EditOverlay **
Gets or sets the edit overlay for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.iOSEdition.EditInteractiveOverlay|EditInteractiveOverlay]]
** {{wiki:PublicProperty.gif|}} ExtentOverlay **
Gets or sets the extent overlay for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.iOSEdition.ExtentInteractiveOverlay|ExtentInteractiveOverlay]]
** {{wiki:PublicProperty.gif|}} InteractiveOverlays **
Gets or sets the extent overlay for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.iOSEdition.InteractiveOverlay, iOSEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]]
** {{wiki:PublicProperty.gif|}} MapTools **
Gets the map tools for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.iOSEdition.MapTools|MapTools]]
** {{wiki:PublicProperty.gif|}} MapUnit **
Gets or sets the map unit for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]]
** {{wiki:PublicProperty.gif|}} Overlays **
Gets the overlays for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.iOSEdition.Overlay, iOSEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]]
** {{wiki:PublicProperty.gif|}} EventView **
Gets the event view for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} TrackOverlay **
Gets or sets the track overlay for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.iOSEdition.TrackInteractiveOverlay|TrackInteractiveOverlay]]
** {{wiki:PublicProperty.gif|}} ZoomLevelSet **
Gets or sets the zoom level set for the MapControl.
== Remarks ==
N/A
== Return Value ==
* Type:[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]]
** {{wiki:PublicProperty.gif|}} MinimumScale **
This property gets and sets a minimum scale when navigating the map. When you keep zooming in, and the target scale is smaller than the minimum scale, the zooming operation will be stopped.
== Remarks ==
N/A
== Return Value ==
* Type:Double
** {{wiki:PublicProperty.gif|}} MaximumScale **
This property gets and sets a maximum scale when navigating the map. When you keep zooming out, and the target scale is bigger than the maximum scale, the zooming operation will be stopped.
== Remarks ==
N/A
== Return Value ==
* Type:Double
** {{wiki:PublicProperty.gif|}} ClassHandle **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IntPtr
** {{wiki:PublicProperty.gif|}} AccessibilityActivationPoint **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
** {{wiki:PublicProperty.gif|}} AccessibilityElementsHidden **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} AccessibilityFrame **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
** {{wiki:PublicProperty.gif|}} AccessibilityHint **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} AccessibilityIdentifier **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} AccessibilityLabel **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} AccessibilityLanguage **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} AccessibilityNavigationStyle **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIAccessibilityNavigationStyle
** {{wiki:PublicProperty.gif|}} AccessibilityPath **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIBezierPath
** {{wiki:PublicProperty.gif|}} AccessibilityTraits **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIAccessibilityTrait
** {{wiki:PublicProperty.gif|}} AccessibilityValue **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} AccessibilityViewIsModal **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} AlignmentRectInsets **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIEdgeInsets
** {{wiki:PublicProperty.gif|}} Alpha **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:nfloat
** {{wiki:PublicProperty.gif|}} AutoresizingMask **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIViewAutoresizing
** {{wiki:PublicProperty.gif|}} AutosizesSubviews **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} BackgroundColor **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIColor
** {{wiki:PublicProperty.gif|}} Bounds **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
** {{wiki:PublicProperty.gif|}} Center **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGPoint
** {{wiki:PublicProperty.gif|}} ClearsContextBeforeDrawing **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} ClipsToBounds **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Constraints **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSLayoutConstraint[]
** {{wiki:PublicProperty.gif|}} ContentMode **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIViewContentMode
** {{wiki:PublicProperty.gif|}} ContentScaleFactor **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:nfloat
** {{wiki:PublicProperty.gif|}} ContentStretch **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
** {{wiki:PublicProperty.gif|}} ExclusiveTouch **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Frame **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGRect
** {{wiki:PublicProperty.gif|}} GestureRecognizers **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIGestureRecognizer[]
** {{wiki:PublicProperty.gif|}} HasAmbiguousLayout **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Hidden **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} IntrinsicContentSize **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGSize
** {{wiki:PublicProperty.gif|}} IsAccessibilityElement **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Layer **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CALayer
** {{wiki:PublicProperty.gif|}} LayoutMargins **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIEdgeInsets
** {{wiki:PublicProperty.gif|}} MaskView **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} MotionEffects **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIMotionEffect[]
** {{wiki:PublicProperty.gif|}} MultipleTouchEnabled **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Opaque **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} PreservesSuperviewLayoutMargins **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} RestorationIdentifier **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} ShouldGroupAccessibilityChildren **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} Subviews **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView[]
** {{wiki:PublicProperty.gif|}} Superview **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} Tag **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:nint
** {{wiki:PublicProperty.gif|}} TintAdjustmentMode **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIViewTintAdjustmentMode
** {{wiki:PublicProperty.gif|}} TintColor **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIColor
** {{wiki:PublicProperty.gif|}} TraitCollection **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UITraitCollection
** {{wiki:PublicProperty.gif|}} Transform **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:CGAffineTransform
** {{wiki:PublicProperty.gif|}} TranslatesAutoresizingMaskIntoConstraints **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} UserInteractionEnabled **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} ViewForBaselineLayout **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} ViewPrintFormatter **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIViewPrintFormatter
** {{wiki:PublicProperty.gif|}} Window **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIWindow
** {{wiki:PublicProperty.gif|}} AccessibilityCustomActions **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIAccessibilityCustomAction[]
** {{wiki:PublicProperty.gif|}} CanBecomeFirstResponder **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} CanResignFirstResponder **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} InputAccessoryView **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} InputAccessoryViewController **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIInputViewController
** {{wiki:PublicProperty.gif|}} InputView **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:PublicProperty.gif|}} InputViewController **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIInputViewController
** {{wiki:PublicProperty.gif|}} IsFirstResponder **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} KeyCommands **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIKeyCommand[]
** {{wiki:PublicProperty.gif|}} NextResponder **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UIResponder
** {{wiki:PublicProperty.gif|}} TextInputContextIdentifier **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSString
** {{wiki:PublicProperty.gif|}} TextInputMode **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:UITextInputMode
** {{wiki:PublicProperty.gif|}} UndoManager **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSUndoManager
** {{wiki:PublicProperty.gif|}} UserActivity **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSUserActivity
** {{wiki:PublicProperty.gif|}} SuperHandle **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IntPtr
** {{wiki:PublicProperty.gif|}} Handle **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:IntPtr
** {{wiki:PublicProperty.gif|}} Class **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Class
** {{wiki:PublicProperty.gif|}} DebugDescription **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} Description **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:String
** {{wiki:PublicProperty.gif|}} IsProxy **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:PublicProperty.gif|}} RetainCount **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:nuint
** {{wiki:PublicProperty.gif|}} Self **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSObject
** {{wiki:PublicProperty.gif|}} Superclass **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Class
** {{wiki:PublicProperty.gif|}} Zone **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:NSZone
==== Protected Properties ====
** {{wiki:ProtectedProperty.gif|}} OverlaysView **
Gets the overlays view.
== Remarks ==
N/A
== Return Value ==
* Type:UIView
** {{wiki:ProtectedProperty.gif|}} IsDirectBinding **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
** {{wiki:ProtectedProperty.gif|}} InFinalizerQueue **
N/A
== Remarks ==
N/A
== Return Value ==
* Type:Boolean
==== Public Events ====
** {{wiki:PublicEvent.gif|}} CurrentExtentChanging **
N/A
== Remarks ==
N/A
Event Arguments:[[ThinkGeo.MapSuite.iOSEdition.CurrentExtentChangingMapViewEventArgs|CurrentExtentChangingMapViewEventArgs]]
** {{wiki:PublicEvent.gif|}} CurrentExtentChanged **
N/A
== Remarks ==
N/A
Event Arguments:[[ThinkGeo.MapSuite.iOSEdition.CurrentExtentChangedMapViewEventArgs|CurrentExtentChangedMapViewEventArgs]]
** {{wiki:PublicEvent.gif|}} CurrentScaleChanging **
N/A
== Remarks ==
N/A
Event Arguments:[[ThinkGeo.MapSuite.iOSEdition.CurrentScaleChangingMapViewEventArgs|CurrentScaleChangingMapViewEventArgs]]
** {{wiki:PublicEvent.gif|}} CurrentScaleChanged **
N/A
== Remarks ==
N/A
Event Arguments:[[ThinkGeo.MapSuite.iOSEdition.CurrentScaleChangedMapViewEventArgs|CurrentScaleChangedMapViewEventArgs]]
** {{wiki:PublicEvent.gif|}} MapLongPress **
This event raises when [map long press].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapSingleTap **
This event raises when [map single tap].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapDoubleTap **
This event raises when [map double tap].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapTouchMove **
This event raises when [map touch move].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapTouchUp **
This event raises when [map touch up].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapTouchDown **
This event raises when [map touch down].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer
** {{wiki:PublicEvent.gif|}} MapTouchPinch **
This event raises when [map touch pinch].
== Remarks ==
N/A
Event Arguments:UIGestureRecognizer