IUITextViewDelegate 接口

定义

表示所需方法的接口 ((如果协议 UITextViewDelegate有任何) )。

[Foundation.Protocol(Name="UITextViewDelegate", WrapperType=typeof(UIKit.UITextViewDelegateWrapper))]
public interface IUITextViewDelegate : IDisposable, UIKit.IUIScrollViewDelegate
type IUITextViewDelegate = interface
    interface INativeObject
    interface IDisposable
    interface IUIScrollViewDelegate
派生
属性
实现

注解

此接口包含所需的方法 ((如果定义协议 UITextViewDelegate有任何) )。

如果开发人员创建实现此接口的类,则实现方法将自动导出到具有协议中 UITextViewDelegate 定义的方法的匹配签名的 Objective-C。

如果类提供任何) UITextViewDelegate_Extensions 作为接口的扩展方法,则可选方法 (,从而允许开发人员调用协议上的任何可选方法。

属性

Handle

处理指向非托管对象表示形式的 (指针) 。

(继承自 INativeObject)

扩展方法

DecelerationEnded(IUIScrollViewDelegate, UIScrollView)

指示与滚动事件相关的减速已结束。

DecelerationStarted(IUIScrollViewDelegate, UIScrollView)

指示滚动事件的减速已开始。

DidChangeAdjustedContentInset(IUIScrollViewDelegate, UIScrollView)

当嵌入值更改时调用的方法。

DidZoom(IUIScrollViewDelegate, UIScrollView)

指示指定的 scrollView 已缩放。

DraggingEnded(IUIScrollViewDelegate, UIScrollView, Boolean)

指示拖动已完成。

DraggingStarted(IUIScrollViewDelegate, UIScrollView)

指示拖动已开始。

ScrollAnimationEnded(IUIScrollViewDelegate, UIScrollView)

指示与滚动相关的所有动画都已完成。

Scrolled(IUIScrollViewDelegate, UIScrollView)

指示指定的 scrollView 已滚动。

ScrolledToTop(IUIScrollViewDelegate, UIScrollView)

指示指定的 scrollView 的滚动已在顶部结束。

ShouldScrollToTop(IUIScrollViewDelegate, UIScrollView)

是否应允许滚动到 scrollView 的开头。

ViewForZoomingInScrollView(IUIScrollViewDelegate, UIScrollView)

请求缩放时要缩放的 UIView。

WillEndDragging(IUIScrollViewDelegate, UIScrollView, CGPoint, CGPoint)

指示拖动即将结束。

ZoomingEnded(IUIScrollViewDelegate, UIScrollView, UIView, nfloat)

指示缩放已完成。

ZoomingStarted(IUIScrollViewDelegate, UIScrollView, UIView)

指示缩放已开始。

Changed(IUITextViewDelegate, UITextView)

指示应用用户更改了指定 UITextView 中的文本或文本属性。

EditingEnded(IUITextViewDelegate, UITextView)

指示编辑已在指定的 UITextView 中结束。

EditingStarted(IUITextViewDelegate, UITextView)

指示已在指定的 UITextView 中开始编辑。

SelectionChanged(IUITextViewDelegate, UITextView)

指示指定的 UITextView 中的文本选择已更改。

ShouldBeginEditing(IUITextViewDelegate, UITextView)

是否应在指定的 UITextView 中开始编辑。

ShouldChangeText(IUITextViewDelegate, UITextView, NSRange, String)

是否应在 UITextView 中替换指定的文本。

ShouldEndEditing(IUITextViewDelegate, UITextView)

编辑是否应在指定的 UITextView 中结束。

ShouldInteractWithTextAttachment(IUITextViewDelegate, UITextView, NSTextAttachment, NSRange)

开发人员不应使用此已弃用的方法。 开发人员应改用“UITextItemInteraction”的“ShouldInteractWithTextAttachment”重载。

ShouldInteractWithTextAttachment(IUITextViewDelegate, UITextView, NSTextAttachment, NSRange, UITextItemInteraction)

指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。

ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange)

指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。

ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange, UITextItemInteraction)

指定的 UITextView 是否应允许用户与给定文本范围中的指定 URL 交互。

适用于