UIAlertViewDelegate_Extensions Class
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.
Extension methods to the IUIAlertViewDelegate interface to support all the methods from the UIAlertViewDelegate protocol.
public static class UIAlertViewDelegate_Extensions
type UIAlertViewDelegate_Extensions = class
- Inheritance
-
UIAlertViewDelegate_Extensions
Remarks
The extension methods for IUIAlertViewDelegate allow developers to treat instances of the interface as having all the optional methods of the original UIAlertViewDelegate protocol. Since the interface only contains the required members, these extension methods allow developers to call the optional members of the protocol.
Methods
Canceled(IUIAlertViewDelegate, UIAlertView) |
Indicates that this UIAlertView is about to be canceled. |
Clicked(IUIAlertViewDelegate, UIAlertView, nint) |
Indicates that the user has clicked a button in this UIAlertView. |
Dismissed(IUIAlertViewDelegate, UIAlertView, nint) |
Indicates that this UIAlertView has been dismissed. |
Presented(IUIAlertViewDelegate, UIAlertView) |
Indicates that this UIAlertView has been presented to the application user. |
ShouldEnableFirstOtherButton(IUIAlertViewDelegate, UIAlertView) |
Whether the first non-cancel button in this UIAlertView should be enabled. |
WillDismiss(IUIAlertViewDelegate, UIAlertView, nint) |
Indicates that this UIAlertView will shortly be dismissed. |
WillPresent(IUIAlertViewDelegate, UIAlertView) |
Indicates that this UIAlertView will shortly be presented to the application user. |