DialogViewController 类

定义

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

public class DialogViewController : UIKit.UITableViewController
type DialogViewController = class
    inherit UITableViewController
继承
派生

注解

DialogViewController 呈现分配给 RootElement 类型的 Root 属性的内容。 这可以在构造时传递,也可以在创建 DialogViewController 后分配。

可以通过创建呈现信息所需的各种节点,使用“Elements”API 手动创建 RootElement。 如果需要控制,如果要扩展 MonoTouch.Dialogs 支持的功能,或者想要动态生成对话的内容,则可以使用此方法。 例如,在 TweetStation 中,主要时间线视图就是用到这一点。

元素 API 是最完整的 API,也是最可自定义的 API。 这是创建用户界面定义的方式:

       var root = new RootElement ("Settings") {
         new Section (){
           new BooleanElement ("Airplane Mode", false),
           new RootElement ("Notifications", 0, 0) {
             new Section (null, 
                 "Turn off Notifications to disable Sounds\n" +
                 "Alerts and Home Screen Badges for the."){
               new BooleanElement ("Notifications", false)
             }
           }},
         new Section (){
           new RootElement ("Brightness"){
             new Section (){
               new FloatElement (null, null, 0.5f),
               new BooleanElement ("Auto-brightness", false),
			new UILabel ("I am a simple UILabel!"),
             }
           },
         },
         new Section () {
           new EntryElement ("Login", "enter", "miguel"),
           new EntryElement ("Password", "enter", "password", true),
           new DateElement ("Select Date", DateTime.Now),
           new TimeElement ("Select Time", DateTime.Now),
         },
};

这会创建一个 toplevel RootElement,它将视图标记为“设置”,然后显示三个节。 第一部分包含一个布尔值, (使用 UISwitch) 后跟标记为“Notifications”的嵌套表实现。 如果用户点击该通知单元格,将显示一个包含新布尔元素的新表。 第二部分和第三部分显示了一些可以使用的常见元素。

此外,还有一个基于反射的简单构造函数,可用于快速组合对话,例如,创建帐户页同样简单::

  class AccountInfo {
      [Section]
      public bool AirplaneMode;

      [Section ("Data Entry", "Your credentials")]

      [Entry ("Enter your login name")]
      public string Login;

      [Caption ("Password"), Password ("Enter your password")]
      public string passwd;

      [Section ("Travel options")]
      public SeatPreference preference;
}

  void Setup ()
  {
      account = new AccountInfo ();

      var bc = new BindingContext (this, account, "Seat Selection");
  }

默认情况下,通过在 DialogViewController 中设置 Autorotate 属性,支持自动轮转。 设置此值将传播到 MonoTouch.Dialog 附带的各种组件,例如 WebView 以及日期和时间选取器

“下拉刷新”是最初在 Tweetie2 中发现的一种视觉效果,它成为许多应用程序中的热门效果。

若要向对话添加自动下拉引用支持,只需执行两项操作:挂接事件处理程序,以便在用户拉取数据时收到通知,并在加载数据后通知 DialogViewController 以返回到其默认状态。

挂接通知很简单,只需连接到 DialogViewController 上的 RefreshRequested 事件,如下所示:

dvc.RefreshRequested += OnUserRequestedRefresh;

然后在 OnUserRequestedRefresh 方法上,将一些数据加载排队,从网络请求一些数据,或旋转线程来计算数据。 加载数据后,必须通知 DialogViewController 新数据位于中,若要将视图还原到其默认状态,请通过调用 ReloadComplete 执行此操作:

dvc.ReloadComplete ();

若要支持搜索,请在 DialogViewController 上设置 EnableSearch 属性。 还可以将 SearchPlaceholder 属性设置为用作搜索栏中的水印文本。

搜索将在用户键入时更改视图的内容,它会搜索可见字段并向用户显示这些字段。 DialogViewController 公开三种方法,以编程方式对结果启动、终止或触发新的筛选操作:StartSearch、FinishSearch、PerformFilter。

系统是可扩展的,因此可以根据需要更改此行为,详细信息如下。

有一个可用于快速创建用户界面的高级反射 API。 有关这方面的更多信息,请参见 BindingContext 文档。

构造函数

DialogViewController(IntPtr)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

DialogViewController(RootElement)

从指定的 RootElement 创建新的 DialogViewController 的构造函数。

DialogViewController(RootElement, Boolean)

从 RootElement 创建新的 DialogViewController 并设置推送状态。

DialogViewController(UITableViewStyle, RootElement)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

DialogViewController(UITableViewStyle, RootElement, Boolean)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

字段

Style

要用于 UITableView 的样式。

属性

AccessibilityAssistiveTechnologyFocusedIdentifiers

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 UIResponder)
AccessibilityCustomActions

允许将方法作为辅助功能支持补充操作添加到 AccessibilityCustomActions

(继承自 UIResponder)
AccessibilityDragSourceDescriptors

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 UIResponder)
AccessibilityDropPointDescriptors

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 UIResponder)
AdditionalSafeAreaInsets

获取或设置其他安全区域内集,以考虑特定于应用的工具栏和其他特定于应用的 UI。

(继承自 UIViewController)
AutoHideSearch

确定显示视图控制器时搜索栏是否自动隐藏。

AutomaticallyAdjustsScrollViewInsets

开发人员不应使用此已弃用的属性。 开发人员应改用“UIScrollView.ContentInsetAdjustmentBehavior”。

(继承自 UIViewController)
AutomaticallyForwardAppearanceAndRotationMethodsToChildViewControllers

确定包含事件是否自动传播到嵌套视图控制器。

(继承自 UIViewController)
Autorotate

控制 DialogViewController 是否应自动旋转。

BottomLayoutGuide

开发人员不应使用此已弃用的属性。 相反,他们应使用 SafeAreaLayoutGuide

(继承自 UIViewController)
CanBecomeFirstResponder

确定此 UIREsponder 是否愿意成为第一响应者。

(继承自 UIResponder)
CanResignFirstResponder

确定此 UIResponder 是否愿意放弃其第一响应方状态。

(继承自 UIResponder)
ChildViewControllerForHomeIndicatorAutoHidden

获取一个子视图控制器,用于确定是否显示返回主屏幕的指示器。

(继承自 UIViewController)
ChildViewControllerForScreenEdgesDeferringSystemGestures

获取处理屏幕边缘手势时优先的子视图控制器(如果存在)。

(继承自 UIViewController)
ChildViewControllers

由此 UIViewController管理的 的 数组UIViewController

(继承自 UIViewController)
Class

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
ClassHandle

此类的句柄。

(继承自 UITableViewController)
ClearsSelectionOnViewWillAppear

是否应在表出现时清除所选内容。

(继承自 UITableViewController)
ContentSizeForViewInPopover

弹出框的默认内容大小。

(继承自 UIViewController)
DebugDescription

此对象的开发人员有意义的说明。

(继承自 NSObject)
DefinesPresentationContext

指定在显示另一个 UIViewController时是否显示此 UIViewControllerView 的 。

(继承自 UIViewController)
Description

对象的说明,即 ToString 的 Objective-C 版本。

(继承自 NSObject)
DisablesAutomaticKeyboardDismissal

如果 true为 ,则即使点击了非输入控件,输入视图也将保持在屏幕上。

(继承自 UIViewController)
EdgesForExtendedLayout

指定 应如何 ParentViewController 扩展此 UIViewController的布局。

(继承自 UIViewController)
EditButtonItem

UIBarButtonItem 状态“Edit”和“Done”之间切换的 。

(继承自 UIViewController)
Editing

trueUIViewController如果 允许应用程序用户编辑内容,则UIView为 。

(继承自 UIViewController)
EnableSearch

确定是否应显示搜索框。 应在显示 DialogViewController 的视图之前设置此值。

ExtendedLayoutIncludesOpaqueBars

扩展布局是否包括不透明的条形图。

(继承自 UIViewController)
ExtensionContext

NSExtensionContext获取此视图控制器的 。

(继承自 UIViewController)
FocusItemContainer

获取焦点环境子级的容器。

(继承自 UIViewController)
Handle

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

(继承自 NSObject)
HidesBottomBarWhenPushed

指定在将其推送到 UINavigationControllerUIViewController工具栏是否应可见。

(继承自 UIViewController)
InputAccessoryView

对象成为第一个响应者时可以附加的自定义视图。

(继承自 UIResponder)
InputAccessoryViewController

获取成为第一个响应者时thisUIResponder要显示的自定义附件UIInputViewController

(继承自 UIResponder)
InputAssistantItem

获取将用于配置快捷栏的助手。

(继承自 UIResponder)
InputView

在对象成为第一个响应者时显示的自定义视图。 只读。

(继承自 UIResponder)
InputViewController

获取在成为第一个响应者时thisUIResponder显示的自定义UIInputViewController

(继承自 UIResponder)
InterfaceOrientation

接口的当前方向。

(继承自 UIViewController)
IsBeingDismissed

true 如果当前 UIViewController 正在被消除,则为 。

(继承自 UIViewController)
IsBeingPresented

true 如果当前 UIViewController 正在呈现,则为 。

(继承自 UIViewController)
IsDirectBinding

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
IsFirstResponder

返回此 UIResponder 是否为第一响应方。

(继承自 UIResponder)
IsMovingFromParentViewController

true 如果当前 UIViewController 正在从其父 UIViewController中删除,则为 。

(继承自 UIViewController)
IsMovingToParentViewController

true 如果当前 UIViewController 正在添加到父 UIViewController级 ,则为 。

(继承自 UIViewController)
IsProxy

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
IsViewLoaded

一个 Boolean ,指示 是否 View 将 加载到内存中。

(继承自 UIViewController)
KeyCommands

应在此 UIResponder 上触发操作的关键命令。 只读。

(继承自 UIResponder)
ModalInPopover

true 如果应按模式呈现, UIViewController 则为 UIPopoverController

(继承自 UIViewController)
ModalPresentationCapturesStatusBarAppearance

UIViewController 在以模式方式显示但非全屏显示时,是否接管状态栏的控制。

(继承自 UIViewController)
ModalPresentationStyle

演示 UIModalPresentationStyleUIViewController时要使用的 。

(继承自 UIViewController)
ModalTransitionStyle

UIModalTransitionStyle要使用的 PresentViewController(UIViewController, Boolean, Action)

(继承自 UIViewController)
ModalViewController

活动呈现视图的控制器。

(继承自 UIViewController)
NavigationController

最近的上级 UINavigationController

(继承自 UIViewController)
NavigationItem

一个 UINavigationItem ,它在其父的 UINavigationController的 中NavigationBar表示此UIViewController

(继承自 UIViewController)
NextResponder

响应链上的下一个响应者

(继承自 UIResponder)
NibBundle

NSBundle从中实例化此UIViewController的 。

(继承自 UIViewController)
NibName

从中实例化此 UIViewController 的 nib 文件的名称,或 null

(继承自 UIViewController)
ParentFocusEnvironment

获取包含当前焦点环境的焦点环境。

(继承自 UIViewController)
ParentViewController

包含此 UIViewControllerUIViewController

(继承自 UIViewController)
PasteConfiguration

UIPasteConfiguration对象支持的 this

(继承自 UIResponder)
PopoverPresentationController

获取视图层次结构中最接近的上级, UIPopoverPresentationController 如果不存在 ,则为 或 null

(继承自 UIViewController)
PreferredContentSize

获取容器内容的首选大小。

(继承自 UIViewController)
PreferredFocusedView

如果不是 null,则指示默认情况下应接收焦点的子级 UIView

(继承自 UIViewController)
PreferredFocusEnvironments

系统以递归方式搜索以查找默认焦点视图的 数组 IUIFocusEnvironment

(继承自 UIViewController)
PreferredScreenEdgesDeferringSystemGestures

获取其手势优先于系统手势的屏幕边缘。

(继承自 UIViewController)
PreferredStatusBarUpdateAnimation

隐藏和显示状态栏的首选动画样式。

(继承自 UIViewController)
PrefersHomeIndicatorAutoHidden

获取一个布尔值,该值指示是否首选隐藏 Home 指示器。

(继承自 UIViewController)
PresentationController

获取视图层次结构中最接近的上级, UIPresentationController 如果不存在 ,则为 或 null

(继承自 UIViewController)
PresentedViewController

UIViewController由此UIViewController或的祖先UIViewControllerthis一呈现的 。

(继承自 UIViewController)
PresentingViewController

UIViewController表示此 UIViewController的 。

(继承自 UIViewController)
PreviewActionItems

获取当用户在 3D Touch Preview 中向上轻扫时显示的 数组 IUIPreviewActionItem

(继承自 UIViewController)
ProvidesPresentationContextTransitionStyle

true 如果这会 UIViewController 替代它显示的 的 UIViewController 转换样式,则为 。

(继承自 UIViewController)
Pushing

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

RefreshControl

UIRefreshControl用于更新表内容的 。

(继承自 UITableViewController)
RestorationClass

负责还原应用程序状态的类。

(继承自 UIViewController)
RestorationIdentifier

指定要还原 的 UIViewController 实例。

(继承自 UIViewController)
RestoresFocusAfterTransition

获取或设置转换 UIViewController 到 后是否还原焦点。

(继承自 UIViewController)
RetainCount

返回对象的当前 Objective-C 保留计数。

(继承自 NSObject)
Root

DialogViewController 显示的根元素,可以在运行时更改该值以更新内容。

RotatingFooterView

在接口旋转期间需要转换的页脚视图

(继承自 UIViewController)
RotatingHeaderView

在接口轮换期间需要转换的标头视图。

(继承自 UIViewController)
SearchDisplayController

与此 UISearchDisplayController关联的 UIViewController(如果有)。

(继承自 UIViewController)
SearchPlaceholder

要显示在搜索栏中的文本占位符

Self

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
ShouldAutomaticallyForwardAppearanceMethods

是否应将外观方法转发到子 UIViewController级 。

(继承自 UIViewController)
ShouldAutomaticallyForwardRotationMethods

是否应将轮换方法转发到子 UIViewController级 。

(继承自 UIViewController)
SplitViewController

最近的上级 UISplitViewControllernull

(继承自 UIViewController)
Storyboard

UIStoryboard创建此的 UIViewController ,或 null

(继承自 UIViewController)
Superclass

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
SuperHandle

用于表示此 NSObject 基类中方法的句柄。

(继承自 NSObject)
SystemMinimumLayoutMargins

获取根视图的最小布局边距。

(继承自 UIViewController)
TabBarController

最近的祖先 UITabBarControllernull

(继承自 UIViewController)
TabBarItem

一个 UITabBarItem ,它在其父的 UITabBarController的 中TabBar表示此UIViewController

(继承自 UIViewController)
TableView

UITableView 由控制器管理的 的引用。

(继承自 UITableViewController)
TextInputContextIdentifier

一个标识符,指示此 UIResponder 应保留其文本输入模式信息。 只读。

(继承自 UIResponder)
TextInputMode

此 UIResponder 的文本输入模式。 只读。

(继承自 UIResponder)
Title

UIViewController的具有人类意义的标识符。

(继承自 UIViewController)
ToolbarItems

的 上的 UINavigationController数组UIBarButtonItemToolbar

(继承自 UIViewController)
TopLayoutGuide

开发人员不应使用此已弃用的属性。 相反,他们应使用 SafeAreaLayoutGuide

(继承自 UIViewController)
TraitCollection

显示的特征,例如成语、比例和大小类。

(继承自 UIViewController)
TransitioningDelegate

一个委托对象,负责生成 IUIViewControllerAnimatedTransitioning用于自定义演示文稿的 。

(继承自 UIViewController)
UndoManager

响应者链中最近的共享 NSUndoManager。 只读。

(继承自 UIResponder)
UserActivity

封装此响应方支持的用户活动的操作。

(继承自 UIResponder)
View

此视图控制器管理的视图。

(继承自 UIViewController)
ViewIfLoaded

View如果已实例化,则返回 ;否则返回 null

(继承自 UIViewController)
ViewRespectsSystemMinimumLayoutMargins

获取或设置一个布尔值,该值控制视图控制器的视图是否遵循最小布局边距。

(继承自 UIViewController)
WantsFullScreenLayout

true 如果视图应与状态栏重叠,则为 。

(继承自 UIViewController)
WeakTransitioningDelegate

用于为过渡动画和交互提供控制器的委托对象。

(继承自 UIViewController)
Zone

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)

方法

AccessibilityDecrement()

指示辅助功能元素减去其内容的值。

(继承自 UIResponder)
AccessibilityElementDidBecomeFocused()

指示辅助技术已将其焦点设置为 thisUIResponder

(继承自 UIResponder)
AccessibilityElementDidLoseFocus()

指示辅助技术已将其焦点从 thisUIResponder更改为 。

(继承自 UIResponder)
AccessibilityElementIsFocused()

指示辅助技术是否侧重于 thisUIResponder

(继承自 UIResponder)
AccessibilityIncrement()

告知辅助功能元素递增其内容的值。

(继承自 UIResponder)
AccessibilityPerformEscape()

指示辅助功能系统关闭模式弹出框或分层显示的元素。

(继承自 UIResponder)
AccessibilityPerformMagicTap()

切换应用的应用程序定义的“最重要的状态”。

(继承自 UIResponder)
AccessibilityScroll(UIAccessibilityScrollDirection)

重写时,允许辅助功能系统执行滚动。

(继承自 UIResponder)
AccessoryButtonTapped(UITableView, NSIndexPath)

指示已按下附件按钮。

(继承自 UITableViewController)
AccessoryForRow(UITableView, NSIndexPath)

开发人员不应使用此已弃用的方法。

(继承自 UITableViewController)
ActivateController(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

Add(UIView)

这是 的 AddSubview(UIView)别名,但使用 Add 模式,因为它允许 C# 3.0 构造在创建对象后添加子视图。

(继承自 UIViewController)
AddChildViewController(UIViewController)

UIViewController将 添加为子级。

(继承自 UIViewController)
AddKeyCommand(UIKeyCommand)

添加 command 为可用于附加硬件键盘的快捷方式。

(继承自 UIViewController)
AddObserver(NSObject, NSString, NSKeyValueObservingOptions, IntPtr)

使用 NSString keyPath) 注册一个对象,以便在外部 (观察到该对象。   观察到的更改将调度到观察者的 对象 ObserveValue(NSString, NSObject, NSDictionary, IntPtr) 方法。

(继承自 NSObject)
AddObserver(NSObject, String, NSKeyValueObservingOptions, IntPtr)

使用字符串 keyPath) 注册一个对象,以便在外部 (观察到该对象。   观察到的更改将调度到观察者的 对象 ObserveValue(NSString, NSObject, NSDictionary, IntPtr) 方法。

(继承自 NSObject)
AddObserver(NSString, NSKeyValueObservingOptions, Action<NSObservedChange>)

注册一个对象,以便使用任意方法在外部观察。

(继承自 NSObject)
AddObserver(String, NSKeyValueObservingOptions, Action<NSObservedChange>)

注册一个对象,以便使用任意方法在外部观察。

(继承自 NSObject)
ApplicationFinishedRestoringState()

在状态还原期间对象解码完成时调用。

(继承自 UIViewController)
AwakeFromNib()

从 nib 文件加载对象后调用。 替代器必须调用 base。AwakeFromNib () 。

(继承自 NSObject)
BecomeFirstResponder()

请求对象成为第一个响应者。

(继承自 UIResponder)
BeginAppearanceTransition(Boolean, Boolean)

使用 EndAppearanceTransition(),告诉孩子 UIViewController他们的 UIView即将出现或消失。

(继承自 UIViewController)
BeginInvokeOnMainThread(Action)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
BeginInvokeOnMainThread(Selector, NSObject)

在主 UI 线程上异步调用指定的代码。

(继承自 NSObject)
BeginRequestWithExtensionContext(NSExtensionContext)

主机应用即将发出请求时调用的方法。

(继承自 UIViewController)
Bind(NSString, NSObject, String, NSDictionary)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
Bind(String, NSObject, String, NSDictionary)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
BindingInfo(String)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
BindingOptionDescriptions(String)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
BindingValueClass(String)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
CanEditRow(UITableView, NSIndexPath)

是否可以编辑指定的行。

(继承自 UITableViewController)
CanFocusRow(UITableView, NSIndexPath)

指定 indexPath 处的行是否可能获得焦点。

(继承自 UITableViewController)
CanMoveRow(UITableView, NSIndexPath)

是否可以移动指定的行。

(继承自 UITableViewController)
CanPaste(NSItemProvider[])

获取是否可以 this 接受 的粘贴操作。

(继承自 UIResponder)
CanPerform(Selector, NSObject)

确定此 UIResponder 是否可以执行指定的操作。 通常用于探测编辑命令。

(继承自 UIResponder)
CanPerformAction(UITableView, Selector, NSIndexPath, NSObject)

编辑菜单是否应具有指定行的“复制”和“粘贴”命令。

(继承自 UITableViewController)
CanPerformUnwind(Selector, UIViewController, NSObject)

指定这 UIViewController 是否支持特定的展开 segue

(继承自 UIViewController)
CellDisplayingEnded(UITableView, UITableViewCell, NSIndexPath)

指示显示的单元格已完成。

(继承自 UITableViewController)
ChildViewControllerForStatusBarHidden()

重写时,返回 UIViewController,用于确定状态栏是隐藏还是取消隐藏。

(继承自 UIViewController)
ChildViewControllerForStatusBarStyle()

重写时,返回确定状态栏样式的 UIViewController。

(继承自 UIViewController)
CommitEditing()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
CommitEditing(NSObject, Selector, IntPtr)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
CommitEditingStyle(UITableView, UITableViewCellEditingStyle, NSIndexPath)

在指定行中提交插入或删除操作。

(继承自 UITableViewController)
ConformsToProtocol(IntPtr)

调用以确定此对象是否实现指定的协议。

(继承自 NSObject)
Copy()

执行基础 Objective-C 对象的副本。

(继承自 NSObject)
Copy(NSObject)

指示“复制”编辑操作。

(继承自 UIResponder)
CreateSizingSource(Boolean)

由 DialogViewController 调用以创建其 UITableViewSource 的方法。

CustomizeMoveTarget(UITableView, NSIndexPath, NSIndexPath)

可用于替代用户选择的位置。

(继承自 UITableViewController)
Cut(NSObject)

指示“剪切”编辑操作。

(继承自 UIResponder)
DangerousAutorelease()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
DangerousRelease()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
DangerousRetain()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
DeactivateController(Boolean)

关闭视图控制器。 它根据托管的容器类型弹出或关闭。

DecodeRestorableState(NSCoder)

使用 EncodeRestorableState(NSCoder),允许自定义状态还原。

(继承自 UIViewController)
Delete(NSObject)

指示“删除”编辑操作。

(继承自 UIResponder)
Deselected(NSIndexPath)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

DidAnimateFirstHalfOfRotation(UIInterfaceOrientation)

在两步旋转动画的第一部分末尾调用的已弃用函数。

(继承自 UIViewController)
DidChange(NSKeyValueChange, NSIndexSet, NSString)

指示对多关系的索引发生了更改。

(继承自 NSObject)
DidChange(NSString, NSKeyValueSetMutationKind, NSSet)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
DidChangeValue(String)

指示对指定的键进行了更改。

(继承自 NSObject)
DidEndEditing(UITableView, NSIndexPath)

指示编辑已完成。

(继承自 UITableViewController)
DidMoveToParentViewController(UIViewController)

在 之后 this 调用 从父 UIViewController添加或删除 。

(继承自 UIViewController)
DidReceiveMemoryWarning()

当系统内存不足时调用。

(继承自 UIViewController)
DidRotate(UIInterfaceOrientation)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

DidUpdateFocus(UIFocusUpdateContext, UIFocusAnimationCoordinator)

指示焦点已更改,详见 。context

(继承自 UIViewController)
DidUpdateFocus(UITableView, UITableViewFocusUpdateContext, UIFocusAnimationCoordinator)

指示焦点已更改,详见 。context

(继承自 UITableViewController)
DismissModalViewController(Boolean)

关闭接收方提交的模式视图控制器。

(继承自 UIViewController)
DismissMoviePlayerViewController()

消除 MPMoviePlayerViewController

(继承自 UIViewController)
DismissViewController(Boolean, Action)

关闭提供的视图控制器。

(继承自 UIViewController)
DismissViewControllerAsync(Boolean)

关闭提供的视图控制器。

(继承自 UIViewController)
Dispose()

释放 NSObject 对象使用的资源。

(继承自 NSObject)
Dispose(Boolean)

释放 UIViewController 对象使用的资源。

(继承自 UIViewController)
DoesNotRecognizeSelector(Selector)

指示此对象无法识别指定的选择器。

(继承自 NSObject)
EditActionsForRow(UITableView, NSIndexPath)

返回在用户轻扫表视图中由 indexPath标识的tableView行后显示的行操作数组。

(继承自 UITableViewController)
EditingStyleForRow(UITableView, NSIndexPath)

指定行的 UITableViewCellEditingStyle。

(继承自 UITableViewController)
EncodeRestorableState(NSCoder)

使用 DecodeRestorableState(NSCoder),允许自定义状态还原。

(继承自 UIViewController)
EncodeTo(NSCoder)

在提供的编码器上对对象的状态进行编码

(继承自 UIViewController)
EndAppearanceTransition()

使用 BeginAppearanceTransition(Boolean, Boolean),告诉孩子 UIViewController他们的子视图刚刚出现或消失。

(继承自 UIViewController)
Equals(NSObject)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
Equals(Object)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
EstimatedHeight(UITableView, NSIndexPath)

使用最小计算估计行的高度。 经常调用。

(继承自 UITableViewController)
EstimatedHeightForFooter(UITableView, nint)

使用最小计算估计页脚视图的高度。

(继承自 UITableViewController)
EstimatedHeightForHeader(UITableView, nint)

使用最小计算估计标头视图的高度。

(继承自 UITableViewController)
ExposedBindings()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
FinishSearch()

允许调用方以编程方式停止搜索。

FooterViewDisplayingEnded(UITableView, UIView, nint)

指示页脚视图的显示已完成。

(继承自 UITableViewController)
GetAllowedChildViewControllersForUnwinding(UIStoryboardUnwindSegueSource)

应搜索的子 UIViewController 对象的数组,以确定它们是否是展开 segue 目标。

(继承自 UIViewController)
GetBindingInfo(NSString)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetBindingOptionDescriptions(NSString)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetBindingValueClass(NSString)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetCell(UITableView, NSIndexPath)

检索指定索引处的 UITableViewCell。

(继承自 UITableViewController)
GetChildViewControllerContainingSegueSource(UIStoryboardUnwindSegueSource)

是展开 segue 源的子 UIViewController 级。

(继承自 UIViewController)
GetDictionaryOfValuesFromKeys(NSString[])

检索指定键的值。

(继承自 NSObject)
GetEnumerator()

返回一个枚举器,该枚举器列出所有子 UIView

(继承自 UIViewController)
GetHashCode()

为当前实例生成哈希代码。

(继承自 NSObject)
GetHeightForFooter(UITableView, nint)

指定页脚视图的高度。

(继承自 UITableViewController)
GetHeightForHeader(UITableView, nint)

指定标题视图的高度。

(继承自 UITableViewController)
GetHeightForRow(UITableView, NSIndexPath)

指定行的高度。

(继承自 UITableViewController)
GetIndexPathForPreferredFocusedView(UITableView)

表首选焦点视图的索引路径。

(继承自 UITableViewController)
GetLeadingSwipeActionsConfiguration(UITableView, NSIndexPath)

返回从前边缘开始轻扫的轻扫操作配置。

(继承自 UITableViewController)
GetMethodForSelector(Selector)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetNativeField(String)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetNativeHash()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
GetOverrideTraitCollectionForChildViewController(UIViewController)

UITraitCollection获取此控制器的指定子视图控制器的 。

(继承自 UIViewController)
GetSegueForUnwinding(UIViewController, UIViewController, String)

定义要在两 UIViewController个 s 之间使用的 segue。

(继承自 UIViewController)
GetSizeForChildContentContainer(IUIContentContainer, CGSize)

使用父容器的大小获取指定子级 IUIContentContainer 内容的大小。

(继承自 UIViewController)
GetSupportedInterfaceOrientations()

UIViewController支持的方向。

(继承自 UIViewController)
GetTargetForAction(Selector, NSObject)

返回响应操作的对象。

(继承自 UIResponder)
GetTargetViewControllerForAction(Selector, NSObject)

获取指定操作和发送方的视图控制器。

(继承自 UIViewController)
GetTrailingSwipeActionsConfiguration(UITableView, NSIndexPath)

返回从尾边开始轻扫的轻扫操作配置。

(继承自 UITableViewController)
GetViewControllerForUnwind(Selector, UIViewController, NSObject)

用于搜索特定展开 segue 的子 UIViewController项。

(继承自 UIViewController)
GetViewForFooter(UITableView, nint)

用于页脚的 UIView。

(继承自 UITableViewController)
GetViewForHeader(UITableView, nint)

用于标头的 UIView。

(继承自 UITableViewController)
HeaderViewDisplayingEnded(UITableView, UIView, nint)

指示标头视图的显示已完成。

(继承自 UITableViewController)
IndentationLevel(UITableView, NSIndexPath)

指定行的缩进级别。

(继承自 UITableViewController)
Init()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
InitializeHandle(IntPtr)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
InitializeHandle(IntPtr, String)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
Invoke(Action, Double)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
Invoke(Action, TimeSpan)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
InvokeOnMainThread(Action)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
InvokeOnMainThread(Selector, NSObject)

同步调用主 UI 线程上的指定代码。

(继承自 NSObject)
IsEqual(NSObject)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
IsKindOfClass(Class)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
IsMemberOfClass(Class)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
LoadView()
LoadViewIfNeeded()

如有必要,请从情节提要或 NIB 同步加载 View

(继承自 UIViewController)
MakeRefreshTableHeaderView(CGRect)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

MakeTableView(CGRect, UITableViewStyle)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

MakeTextWritingDirectionLeftToRight(NSObject)

设置文本从左到右的写入方向。

(继承自 UIResponder)
MakeTextWritingDirectionRightToLeft(NSObject)

设置文本从右到左的写入方向。

(继承自 UIResponder)
MarkDirty()

将常规对等对象 (IsDirectBinding 为 true) 提升为 toggleref 对象。

(继承自 NSObject)
MotionBegan(UIEventSubtype, UIEvent)

在动作 (摇动) 已开始时调用的方法。

(继承自 UIResponder)
MotionCancelled(UIEventSubtype, UIEvent)

如果操作系统取消运动 (摇动) 事件,则调用的方法。

(继承自 UIResponder)
MotionEnded(UIEventSubtype, UIEvent)

运动 (摇动) 完成时调用的方法。

(继承自 UIResponder)
MoveRow(UITableView, NSIndexPath, NSIndexPath)

将指定的行移动到指定的索引。

(继承自 UITableViewController)
MutableCopy()

创建指定 NSObject 的可变副本。

(继承自 NSObject)
NumberOfSections(UITableView)

UITableView 中的节数。

(继承自 UITableViewController)
ObjectDidEndEditing(NSObject)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
ObserveValue(NSString, NSObject, NSDictionary, IntPtr)

指示相对于此对象的指定 keyPath 处的值已更改。

(继承自 NSObject)
OnSearchTextChanged(String)

为引发 SearchTextChanged 事件而调用的虚拟方法。

Paste(NSItemProvider[])

调用 以从 执行粘贴操作。

(继承自 UIResponder)
Paste(NSObject)

指示“粘贴”编辑操作。

(继承自 UIResponder)
PerformAction(UITableView, Selector, NSIndexPath, NSObject)

对指定行的内容执行复制或粘贴。

(继承自 UITableViewController)
PerformFilter(String)

以编程方式访问,用于筛选 DialogViewController 中显示的内容。

PerformSegue(String, NSObject)

执行指定的 UIStoryboardSegue

(继承自 UIViewController)
PerformSelector(Selector)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PerformSelector(Selector, NSObject)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PerformSelector(Selector, NSObject, Double)

在当前实例上调用选择器,如果 obj 不为 null,则将其作为其单个参数传递。

(继承自 NSObject)
PerformSelector(Selector, NSObject, Double, NSString[])

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PerformSelector(Selector, NSObject, NSObject)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean, NSString[])

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PreferredContentSizeDidChangeForChildContentContainer(IUIContentContainer)

通知此控制器指定子容器的内容的首选大小已更改。

(继承自 UIViewController)
PreferredInterfaceOrientationForPresentation()

最能显示此 UIViewController内容的方向。

(继承自 UIViewController)
PreferredStatusBarStyle()

此 UIViewController 的首选 UIStatusBarStyle。

(继承自 UIViewController)
PrefersStatusBarHidden()

此 UIViewController 是否希望隐藏状态栏。

(继承自 UIViewController)
PrepareForInterfaceBuilder()

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
PrepareForSegue(UIStoryboardSegue, NSObject)

通知应用程序 UIStoryboardSegue 即将执行 。

(继承自 UIViewController)
PresentModalViewController(UIViewController, Boolean)

应用程序开发人员应使用 PresentViewController(UIViewController, Boolean, Action) 而不是此已弃用的方法。

(继承自 UIViewController)
PresentMoviePlayerViewController(MPMoviePlayerViewController)

使用标准切换显示电影控制器。

(继承自 UIViewController)
PresentViewController(UIViewController, Boolean, Action)

以模式方式呈现视图控制器。

(继承自 UIViewController)
PresentViewControllerAsync(UIViewController, Boolean)

以模式方式呈现视图控制器。

(继承自 UIViewController)
PressesBegan(NSSet<UIPress>, UIPressesEvent)

指示已在遥控器或游戏控制器上按下物理按钮。

(继承自 UIResponder)
PressesCancelled(NSSet<UIPress>, UIPressesEvent)

指示由于系统事件而取消了物理按钮按下事件。

(继承自 UIResponder)
PressesChanged(NSSet<UIPress>, UIPressesEvent)

指示 Force 的值 evt 已更改。

(继承自 UIResponder)
PressesEnded(NSSet<UIPress>, UIPressesEvent)

指示在遥控器或游戏控制器上按下物理按钮的结束。

(继承自 UIResponder)
RegisterForPreviewingWithDelegate(IUIViewControllerPreviewingDelegate, UIView)

为 3D Touch 速览和弹出操作注册此视图控制器。

(继承自 UIViewController)
ReloadComplete()

调用此方法以指示重新加载已完成,这将相应地更新 UI。

ReloadData()

强制重新加载 DialogViewController 中的数据,强制刷新。

ReloadInputViews()

当此对象是第一响应者时,汇报自定义输入和附件视图。

(继承自 UIResponder)
RemoteControlReceived(UIEvent)

指示已收到远程控制事件。

(继承自 UIResponder)
RemoveFromParentViewController()

从其 ParentViewControllerUIViewController中删除此 UIViewController

(继承自 UIViewController)
RemoveKeyCommand(UIKeyCommand)

删除以前添加的硬件键盘加速键。

(继承自 UIViewController)
RemoveObserver(NSObject, NSString)

阻止指定观察程序接收指定 keyPath 的更改值的进一步通知。

(继承自 NSObject)
RemoveObserver(NSObject, NSString, IntPtr)

停止指定的观察程序接收指定 keyPath 和上下文的更改值的进一步通知。

(继承自 NSObject)
RemoveObserver(NSObject, String)

阻止指定观察程序接收指定 keyPath 的更改值的进一步通知。

(继承自 NSObject)
RemoveObserver(NSObject, String, IntPtr)

停止指定的观察程序接收指定 keyPath 和上下文的更改值的进一步通知。

(继承自 NSObject)
ResignFirstResponder()

当此 UIResponder 被要求辞去其第一响应者状态时调用。

(继承自 UIResponder)
RespondsToSelector(Selector)

此对象是否识别指定的选择器。

(继承自 NSObject)
RestoreUserActivityState(NSUserActivity)

还原持续运行指定用户活动所需的状态。

(继承自 UIResponder)
RowDeselected(UITableView, NSIndexPath)

指示已取消选择指定的行。

(继承自 UITableViewController)
RowHighlighted(UITableView, NSIndexPath)

指示已突出显示指定的行。

(继承自 UITableViewController)
RowSelected(UITableView, NSIndexPath)

指示已选择指定的行。

(继承自 UITableViewController)
RowsInSection(UITableView, nint)

指定节中的行数。

(继承自 UITableViewController)
RowUnhighlighted(UITableView, NSIndexPath)

指示指定的行已取消突出显示。

(继承自 UITableViewController)
SearchButtonClicked(String)

当用户按下 DialogViewController 上的“Seach”按钮时,将调用此虚拟方法。

SectionFor(UITableView, String, nint)

指定标题和节标题索引的节索引。

(继承自 UITableViewController)
SectionIndexTitles(UITableView)

UITableView 的节标题索引。

(继承自 UITableViewController)
Select(NSObject)

指示“选择”编辑操作。|B

(继承自 UIResponder)
SelectAll(NSObject)

指示“全选”编辑操作。

(继承自 UIResponder)
Selected(NSIndexPath)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

SetEditing(Boolean, Boolean)

打开或关闭编辑模式。

(继承自 UIViewController)
SetNativeField(String, NSObject)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
SetNeedsFocusUpdate()

当 是活动焦点环境时 this ,请求焦点更新,这可能会更改 PreferredFocusedView。 (另请参阅 UpdateFocusIfNeeded()。)

(继承自 UIViewController)
SetNeedsStatusBarAppearanceUpdate()

通知系统状态栏的属性已更改。

(继承自 UIViewController)
SetNeedsUpdateOfHomeIndicatorAutoHidden()

控制开发人员的视图控制器是否应显示返回主屏幕的指示器。

(继承自 UIViewController)
SetNeedsUpdateOfScreenEdgesDeferringSystemGestures()

更改其手势优先于系统手势的屏幕边缘。

(继承自 UIViewController)
SetNilValueForKey(NSString)

将指定键的值设置为 null。

(继承自 NSObject)
SetOverrideTraitCollection(UITraitCollection, UIViewController)

设置此 UITraitCollection 控制器的指定子视图控制器的对象。

(继承自 UIViewController)
SetToolbarItems(UIBarButtonItem[], Boolean)

UIBarButtonItem添加到 UIToolbar

(继承自 UIViewController)
SetValueForKey(NSObject, NSString)

将键指定的属性的值设置为指定的值。

(继承自 NSObject)
SetValueForKeyPath(IntPtr, NSString)

创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。

(继承自 NSObject)
SetValueForKeyPath(NSObject, NSString)

设置可以使用键路径访问的属性的值。

(继承自 NSObject)
SetValueForUndefinedKey(NSObject, NSString)

指示尝试将值写入未定义的键。 如果未重写,则引发 NSUndefinedKeyException。

(继承自 NSObject)
SetValuesForKeysWithDictionary(NSDictionary)

将此 NSObject 的值设置为指定字典中的值。

(继承自 NSObject)
ShouldAutorotate()

打开或关闭自动旋转。

(继承自 UIViewController)
ShouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

ShouldHighlightRow(UITableView, NSIndexPath)

是否应突出显示指定的行。

(继承自 UITableViewController)
ShouldIndentWhileEditing(UITableView, NSIndexPath)

在编辑操作期间是否应缩进指定的行。

(继承自 UITableViewController)
ShouldPerformSegue(String, NSObject)

是否应执行 segue。

(继承自 UIViewController)
ShouldShowMenu(UITableView, NSIndexPath)

是否应为指定行显示编辑菜单。

(继承自 UITableViewController)
ShouldSpringLoadRow(UITableView, NSIndexPath, IUISpringLoadedInteractionContext)

调用 的方法,用于指示标识的行是否应在指定上下文中弹载。

(继承自 UITableViewController)
ShouldUpdateFocus(UIFocusUpdateContext)

this 失去或接收焦点之前调用。 如果任一焦点环境返回 false,则取消焦点更新。

(继承自 UIViewController)
ShouldUpdateFocus(UITableView, UITableViewFocusUpdateContext)

tableView 失去或接收焦点之前调用。 如果任一焦点环境返回 false,则取消焦点更新。

(继承自 UITableViewController)
ShowDetailViewController(UIViewController, NSObject)

在详细信息上下文中显示此视图控制器。

(继承自 UIViewController)
ShowViewController(UIViewController, NSObject)

显示此视图控制器。

(继承自 UIViewController)
StartSearch()

允许调用方以编程方式激活搜索栏并启动搜索过程

SystemLayoutFittingSizeDidChangeForChildContentContainer(IUIContentContainer)

通知此容器自动布局调整了指定的子容器的大小。

(继承自 UIViewController)
TitleForDeleteConfirmation(UITableView, NSIndexPath)

“删除-确认”按钮的标题。

(继承自 UITableViewController)
TitleForFooter(UITableView, nint)

指定节中页脚视图的标题。

(继承自 UITableViewController)
TitleForHeader(UITableView, nint)

指定节中标题视图的标题。

(继承自 UITableViewController)
ToggleBoldface(NSObject)

切换使用加粗字体。

(继承自 UIResponder)
ToggleItalics(NSObject)

切换斜体字体的使用。

(继承自 UIResponder)
ToggleUnderline(NSObject)

切换下划线的使用。

(继承自 UIResponder)
ToString()

返回当前实例的值的字符串表示形式。

(继承自 NSObject)
TouchesBegan(NSSet, UIEvent)

当一个或多个手指触摸屏幕时发送。

(继承自 UIResponder)
TouchesCancelled(NSSet, UIEvent)

在取消触摸处理时发送。

(继承自 UIResponder)
TouchesEnded(NSSet, UIEvent)

从屏幕上抬起一个或多个手指时发送。

(继承自 UIResponder)
TouchesEstimatedPropertiesUpdated(NSSet)

更新 的估计属性 touches 时调用。

(继承自 UIResponder)
TouchesMoved(NSSet, UIEvent)

当一个或多个手指在屏幕上移动时发送。

(继承自 UIResponder)
TraitCollectionDidChange(UITraitCollection)

当视图控制器的特征集合发生更改时调用的方法。

(继承自 UIViewController)
Transition(UIViewController, UIViewController, Double, UIViewAnimationOptions, Action, UICompletionHandler)

用于在两个视图控制器的子视图控制器之间转换。

(继承自 UIViewController)
TransitionAsync(UIViewController, UIViewController, Double, UIViewAnimationOptions, Action)

用于在两个视图控制器的子视图控制器之间转换。

(继承自 UIViewController)
TriggerRefresh()

调用此方法以触发数据刷新。

Unbind(NSString)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
Unbind(String)
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
UnregisterForPreviewingWithContext(IUIViewControllerPreviewing)

previewing停止处理 3D Touch 速览和弹出输入。

(继承自 UIViewController)
Unwind(UIStoryboardSegue, UIViewController)

在展开过程中对展开路径中的任何 UIViewController 对象调用。

(继承自 UIViewController)
UpdateFocusIfNeeded()

如果任何焦点环境有挂起的更新,此方法将强制立即更新焦点。 与 不同 SetNeedsFocusUpdate(),此方法可由任何 UIViewController调用,无论它当前是否包含焦点。

(继承自 UIViewController)
UpdateUserActivityState(NSUserActivity)

汇报给定的用户活动状态。

(继承自 UIResponder)
UpdateViewConstraints()

当 需要重新计算其布局约束时 UIViewController 调用。

(继承自 UIViewController)
ValueForKey(NSString)

返回与指定键关联的属性的值。

(继承自 NSObject)
ValueForKeyPath(NSString)

返回可以使用键路径访问的属性的值。

(继承自 NSObject)
ValueForUndefinedKey(NSString)

指示尝试读取未定义键的值。 如果未重写,则引发 NSUndefinedKeyException。

(继承自 NSObject)
ViewDidAppear(Boolean)

在 添加到视图层次结构后 View 调用。

(继承自 UIViewController)
ViewDidDisappear(Boolean)

此方法在从显示UIView层次结构中删除 的 View 属性后UIViewControllerUIViewthis调用。

(继承自 UIViewController)
ViewDidLayoutSubviews()

在 布局其子视图后 View 调用。

(继承自 UIViewController)
ViewDidLoad()

在控制器的 View 加载到内存后调用。

(继承自 UIViewController)
ViewDidUnload()

在 iOS 6 及更高版本中,永远不会调用此方法。 在以前的版本中,当控制器的视图从内存中释放时,会调用它。

(继承自 UIViewController)
ViewLayoutMarginsDidChange()

更改视图的布局边距时调用的方法。

(继承自 UIViewController)
ViewSafeAreaInsetsDidChange()

通过系统条形的大小更改或更改 AdditionalSafeAreaInsets 属性更改安全区域嵌入时调用的方法。

(继承自 UIViewController)
ViewWillAppear(Boolean)

将在显示 UITableView 时调用。

ViewWillDisappear(Boolean)

在隐藏 UITableView 时调用

ViewWillLayoutSubviews()

在 布局其子视图之前 View 调用。

(继承自 UIViewController)
ViewWillTransitionToSize(CGSize, IUIViewControllerTransitionCoordinator)

对于 UIViewController 属于应用扩展的一部分的对象,在调整 大小之前 View 调用 。

(继承自 UIViewController)
ViewWillUnload()

在 iOS 6 及更高版本中,永远不会调用此方法。 在以前的版本中,它在控制器的视图从内存中释放之前调用。

(继承自 UIViewController)
WillAnimateFirstHalfOfRotation(UIInterfaceOrientation, Double)

在轮换的前半部分发送的已弃用方法。 应用程序开发人员应改用 WillAnimateRotation(UIInterfaceOrientation, Double)

(继承自 UIViewController)
WillAnimateRotation(UIInterfaceOrientation, Double)

在一步接口旋转之前调用。

(继承自 UIViewController)
WillAnimateSecondHalfOfRotation(UIInterfaceOrientation, Double)

在轮换的后半部分发送的已弃用方法。 应用程序开发人员应改用 WillAnimateRotation(UIInterfaceOrientation, Double)

(继承自 UIViewController)
WillBeginEditing(UITableView, NSIndexPath)

指示编辑即将开始。

(继承自 UITableViewController)
WillChange(NSKeyValueChange, NSIndexSet, NSString)

指示指定键中指定索引的值即将更改。

(继承自 NSObject)
WillChange(NSString, NSKeyValueSetMutationKind, NSSet)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

(继承自 NSObject)
WillChangeValue(String)

指示指定键的值即将更改。

(继承自 NSObject)
WillDeselectRow(UITableView, NSIndexPath)

指示即将取消选择某一行。

(继承自 UITableViewController)
WillDisplay(UITableView, UITableViewCell, NSIndexPath)

指示即将显示单元格。

(继承自 UITableViewController)
WillDisplayFooterView(UITableView, UIView, nint)

指示即将显示页脚视图。

(继承自 UITableViewController)
WillDisplayHeaderView(UITableView, UIView, nint)

指示即将显示标头视图。

(继承自 UITableViewController)
WillMoveToParentViewController(UIViewController)

在添加或删除 this 容器 UIViewController之前调用。

(继承自 UIViewController)
WillRotate(UIInterfaceOrientation, Double)

在用户界面轮换之前调用。

(继承自 UIViewController)
WillSelectRow(UITableView, NSIndexPath)

指示即将选择行。

(继承自 UITableViewController)
WillTransitionToTraitCollection(UITraitCollection, IUIViewControllerTransitionCoordinator)

通知 this 其特征集合将更改为 traitCollection,由 coordinator协调。

(继承自 UIViewController)

事件

OnSelection

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

RefreshRequested

如果在显示视图之前为此事件分配处理程序,则 DialogViewController 将支持下拉刷新 UI。

SearchTextChanged

当用户更改要搜索的文本时引发的事件。

ViewAppearing

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

ViewDisappearing

在 UITableView 消失时调用。

ViewDissapearing
已过时.

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

扩展方法

GetDebugDescription(INSObjectProtocol)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

DisplayingBannerAd(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

GetCanDisplayBannerAds(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

GetInterstitialPresentationPolicy(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

GetOriginalContentView(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

PresentingFullScreenAd(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

RequestInterstitialAdPresentation(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

SetCanDisplayBannerAds(UIViewController, Boolean)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

SetInterstitialPresentationPolicy(UIViewController, ADInterstitialPresentationPolicy)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

ShouldPresentInterstitialAd(UIViewController)

DialogViewController 是使用 MonoTouch.Dialog 的主要入口点,它为 UITableViewController 提供简化的 API。

GetAccessibilityCustomRotors(NSObject)

获取适用于 this 对象的 对象的数组UIAccessibilityCustomRotor

SetAccessibilityCustomRotors(NSObject, UIAccessibilityCustomRotor[])

设置适用于 this 对象的 对象数组UIAccessibilityCustomRotor

GetTransitionCoordinator(UIViewController)

IUIViewControllerTransitionCoordinator 协调指定 UIViewController 的转换。

GetFocusItemContainer(IUIFocusEnvironment)

获取环境的焦点容器。

GetParentFocusEnvironment(IUIFocusEnvironment)

获取父焦点环境。

GetPreferredFocusEnvironments(IUIFocusEnvironment)

获取环境在更新焦点时首选的焦点环境列表(按优先级排序)。

CanPaste(IUIPasteConfigurationSupporting, NSItemProvider[])

true如果响应者可以从指定的项提供程序粘贴,则返回 。

Paste(IUIPasteConfigurationSupporting, NSItemProvider[])

执行粘贴。

DecreaseSize(UIResponder, NSObject)

硬件键盘请求 (Command-减) 来减小 的大小 UIResponder

IncreaseSize(UIResponder, NSObject)

硬件键盘请求 (Command-plus) 来增加 的大小 UIResponder

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)

指示缩放已开始。

CollapseSecondaryViewController(UIViewController, UIViewController, UISplitViewController)

折叠上的辅助视图控制器 splitViewController

GetSplitViewController(UIViewController)

返回嵌套视图控制器的拆分视图控制器。

SeparateSecondaryViewControllerForSplitViewController(UIViewController, UISplitViewController)

返回 的 splitViewController单独辅助视图控制器。

CanEditRow(IUITableViewDataSource, UITableView, NSIndexPath)

位于 的行是否应可编辑。

CanMoveRow(IUITableViewDataSource, UITableView, NSIndexPath)

位于 的行是否可以移动到表视图中的另一个位置。

CommitEditingStyle(IUITableViewDataSource, UITableView, UITableViewCellEditingStyle, NSIndexPath)

提交指定行的插入或删除操作。

MoveRow(IUITableViewDataSource, UITableView, NSIndexPath, NSIndexPath)

移动行时调用,以便数据源可以“实现”在用户界面中执行的已更改行位置。 这可确保数据与显示的内容保持同步。

NumberOfSections(IUITableViewDataSource, UITableView)

返回显示数据所需的部分数。

SectionFor(IUITableViewDataSource, UITableView, String, nint)

返回具有给定 和 的节的索引。

SectionIndexTitles(IUITableViewDataSource, UITableView)

返回要显示为表视图上的索引的标题数组。

TitleForFooter(IUITableViewDataSource, UITableView, nint)

调用 以填充指定节的页脚。

TitleForHeader(IUITableViewDataSource, UITableView, nint)

调用 以填充指定节的标头。

AccessoryButtonTapped(IUITableViewDelegate, UITableView, NSIndexPath)

指出用户已点击指定 indexPath 处的附件/披露。

AccessoryForRow(IUITableViewDelegate, UITableView, NSIndexPath)

开发人员不应使用此已弃用的方法。

CanFocusRow(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 处的行是否可能获得焦点。

CanPerformAction(IUITableViewDelegate, UITableView, Selector, NSIndexPath, NSObject)

指定 indexPath 中的单元格是否可以执行指定的复制或粘贴操作。

CellDisplayingEnded(IUITableViewDelegate, UITableView, UITableViewCell, NSIndexPath)

指示刚删除单元格。

CustomizeMoveTarget(IUITableViewDelegate, UITableView, NSIndexPath, NSIndexPath)

用于更改单元格移动目标,例如,以防止将单元格置于特定位置。

DidEndEditing(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 处单元格的编辑已完成。

DidUpdateFocus(IUITableViewDelegate, UITableView, UITableViewFocusUpdateContext, UIFocusAnimationCoordinator)

指示焦点已更改,详见 。context

EditActionsForRow(IUITableViewDelegate, UITableView, NSIndexPath)

返回在用户轻扫表视图中由 indexPath标识的tableView行后显示的行操作数组。

EditingStyleForRow(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 的 UITableViewCellEditingStyle。

EstimatedHeight(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 的高度估计值。 实现应执行最少的计算,因为它会重复调用。

EstimatedHeightForFooter(IUITableViewDelegate, UITableView, nint)

指定节页脚的估计高度。

EstimatedHeightForHeader(IUITableViewDelegate, UITableView, nint)

指定节的标题的估计高度。

FooterViewDisplayingEnded(IUITableViewDelegate, UITableView, UIView, nint)

指示已删除指定节的页脚视图。

GetHeightForFooter(IUITableViewDelegate, UITableView, nint)

指定节的页脚的高度。

GetHeightForHeader(IUITableViewDelegate, UITableView, nint)

指定节的标头的高度。

GetHeightForRow(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 处单元格的高度。

GetIndexPathForPreferredFocusedView(IUITableViewDelegate, UITableView)

表首选焦点视图的索引路径。

GetLeadingSwipeActionsConfiguration(IUITableViewDelegate, UITableView, NSIndexPath)

返回从前边缘开始轻扫的轻扫操作配置。

GetTrailingSwipeActionsConfiguration(IUITableViewDelegate, UITableView, NSIndexPath)

返回从尾边开始轻扫的轻扫操作配置。

GetViewForFooter(IUITableViewDelegate, UITableView, nint)

用于指定节页脚的视图。

GetViewForHeader(IUITableViewDelegate, UITableView, nint)

用于指定节标头的视图。

HeaderViewDisplayingEnded(IUITableViewDelegate, UITableView, UIView, nint)

指示已删除指定节的标头。

IndentationLevel(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 处单元格的缩进级别。

PerformAction(IUITableViewDelegate, UITableView, Selector, NSIndexPath, NSObject)

执行指定的“复制”或“粘贴”操作。

RowDeselected(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 上的单元格已被取消选择。

RowHighlighted(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 中的单元格已突出显示。

RowSelected(IUITableViewDelegate, UITableView, NSIndexPath)

指示已选择指定 indexPath 上的调用。

RowUnhighlighted(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 上的单元格已取消突出显示。

ShouldHighlightRow(IUITableViewDelegate, UITableView, NSIndexPath)

是否应突出显示指定 indexPath 中的单元格。

ShouldIndentWhileEditing(IUITableViewDelegate, UITableView, NSIndexPath)

指定 indexPath 中的单元格在编辑时是否应缩进。

ShouldShowMenu(IUITableViewDelegate, UITableView, NSIndexPath)

指定 rowAtIndexPath 上的单元格是否应显示操作菜单。

ShouldSpringLoadRow(IUITableViewDelegate, UITableView, NSIndexPath, IUISpringLoadedInteractionContext)

调用 的方法,用于指示标识的行是否应在指定上下文中弹载。

ShouldUpdateFocus(IUITableViewDelegate, UITableView, UITableViewFocusUpdateContext)

在失去或接收焦点之前 tableView 调用 T。 如果任一焦点环境返回 false,则取消焦点更新。

TitleForDeleteConfirmation(IUITableViewDelegate, UITableView, NSIndexPath)

重写后,更改删除确认按钮的默认标题。

WillBeginEditing(IUITableViewDelegate, UITableView, NSIndexPath)

指示将编辑指定 indexPath 处的单元格。

WillDeselectRow(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 中的单元格即将取消选择。

WillDisplay(IUITableViewDelegate, UITableView, UITableViewCell, NSIndexPath)

指示即将显示指定 indexPath 中的单元格。

WillDisplayFooterView(IUITableViewDelegate, UITableView, UIView, nint)

指示将显示指定节的页脚视图。

WillDisplayHeaderView(IUITableViewDelegate, UITableView, UIView, nint)

指示即将显示指定节的标头视图。

WillSelectRow(IUITableViewDelegate, UITableView, NSIndexPath)

指示指定 indexPath 处的单元格即将被选中。

适用于