Package apple.uikit.protocol
Interface UIAlertViewDelegate
-
public interface UIAlertViewDelegate
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidalertViewCancel(UIAlertView alertView)Deprecated.default voidalertViewClickedButtonAtIndex(UIAlertView alertView, long buttonIndex)Deprecated.default voidalertViewDidDismissWithButtonIndex(UIAlertView alertView, long buttonIndex)Deprecated.default booleanalertViewShouldEnableFirstOtherButton(UIAlertView alertView)Deprecated.default voidalertViewWillDismissWithButtonIndex(UIAlertView alertView, long buttonIndex)Deprecated.default voiddidPresentAlertView(UIAlertView alertView)Deprecated.default voidwillPresentAlertView(UIAlertView alertView)Deprecated.
-
-
-
Method Detail
-
alertViewClickedButtonAtIndex
@Deprecated default void alertViewClickedButtonAtIndex(UIAlertView alertView, long buttonIndex)
Deprecated.Called when a button is clicked. The view will be automatically dismissed after this call returns
-
alertViewDidDismissWithButtonIndex
@Deprecated default void alertViewDidDismissWithButtonIndex(UIAlertView alertView, long buttonIndex)
Deprecated.after animation
-
alertViewWillDismissWithButtonIndex
@Deprecated default void alertViewWillDismissWithButtonIndex(UIAlertView alertView, long buttonIndex)
Deprecated.before animation and hiding view
-
alertViewCancel
@Deprecated default void alertViewCancel(UIAlertView alertView)
Deprecated.Called when we cancel a view (eg. the user clicks the Home button). This is not called when the user clicks the cancel button. If not defined in the delegate, we simulate a click in the cancel button
-
alertViewShouldEnableFirstOtherButton
@Deprecated default boolean alertViewShouldEnableFirstOtherButton(UIAlertView alertView)
Deprecated.Called after edits in any of the default fields added by the style
-
didPresentAlertView
@Deprecated default void didPresentAlertView(UIAlertView alertView)
Deprecated.after animation
-
willPresentAlertView
@Deprecated default void willPresentAlertView(UIAlertView alertView)
Deprecated.before animation and showing view
-
-