UIScrollViewDelegate.ZoomingEnded(UIScrollView, UIView, nfloat) Method

Definition

Called when content zooming is complete.

[Foundation.Export("scrollViewDidEndZooming:withView:atScale:")]
public virtual void ZoomingEnded (UIKit.UIScrollView scrollView, UIKit.UIView withView, nfloat atScale);
abstract member ZoomingEnded : UIKit.UIScrollView * UIKit.UIView * nfloat -> unit
override this.ZoomingEnded : UIKit.UIScrollView * UIKit.UIView * nfloat -> unit

Parameters

scrollView
UIScrollView

Scroll view containing the content being zoomed.

withView
UIView

View representing the content that needs to be scaled.

atScale
nfloat

The scale factor to use. This value must be between the limits set by the UIScrollView properties MinimumZoomScale and MaximumZoomScale.

Attributes

Remarks

This method is also called after any "bounce" animations, and after animated changes to the zoom level, and also after a zoom-related gesture ends (regardless of whether the zoom level was changed or not) .

Applies to