UIScrollView.TouchesShouldBegin(NSSet, UIEvent, UIView) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method is provided so that the behaviour of a touch in the content view may be customized by a subclass.
[Foundation.Export("touchesShouldBegin:withEvent:inContentView:")]
public virtual bool TouchesShouldBegin (Foundation.NSSet touches, UIKit.UIEvent withEvent, UIKit.UIView inContentView);
abstract member TouchesShouldBegin : Foundation.NSSet * UIKit.UIEvent * UIKit.UIView -> bool
override this.TouchesShouldBegin : Foundation.NSSet * UIKit.UIEvent * UIKit.UIView -> bool
Parameters
- inContentView
- UIView
This is the subview where the touch-down event occured in.
Returns
true
if the scroll view is to send the event messages to inContentView
.
- Attributes
Remarks
This method is meant to be override by subclasses of UIScrollView.