UITextViewDelegate_Extensions.ShouldInteractWithUrl 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange) |
指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。 |
ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange, UITextItemInteraction) |
指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。 |
ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange)
指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'ShouldInteractWithUrl' overload that takes 'UITextItemInteraction' instead.")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static bool ShouldInteractWithUrl (this UIKit.IUITextViewDelegate This, UIKit.UITextView textView, Foundation.NSUrl URL, Foundation.NSRange characterRange);
static member ShouldInteractWithUrl : UIKit.IUITextViewDelegate * UIKit.UITextView * Foundation.NSUrl * Foundation.NSRange -> bool
参数
- This
- IUITextViewDelegate
此扩展方法操作的实例。
- textView
- UITextView
- URL
- NSUrl
- characterRange
- NSRange
返回
- 属性
适用于
ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange, UITextItemInteraction)
指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static bool ShouldInteractWithUrl (this UIKit.IUITextViewDelegate This, UIKit.UITextView textView, Foundation.NSUrl url, Foundation.NSRange characterRange, UIKit.UITextItemInteraction interaction);
static member ShouldInteractWithUrl : UIKit.IUITextViewDelegate * UIKit.UITextView * Foundation.NSUrl * Foundation.NSRange * UIKit.UITextItemInteraction -> bool
参数
- This
- IUITextViewDelegate
此扩展方法操作的实例。
- textView
- UITextView
包含附件的文本视图。
- url
- NSUrl
- characterRange
- NSRange
文本视图中 URL 的字符范围。
- interaction
- UITextItemInteraction
要检查的交互类型。
返回
- 属性