Package apple.uikit.protocol
Interface UIActionSheetDelegate
-
- All Known Implementing Classes:
UIDocumentInteractionController
public interface UIActionSheetDelegate
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidactionSheetCancel(UIActionSheet actionSheet)Deprecated.default voidactionSheetClickedButtonAtIndex(UIActionSheet actionSheet, long buttonIndex)Deprecated.default voidactionSheetDidDismissWithButtonIndex(UIActionSheet actionSheet, long buttonIndex)Deprecated.default voidactionSheetWillDismissWithButtonIndex(UIActionSheet actionSheet, long buttonIndex)Deprecated.default voiddidPresentActionSheet(UIActionSheet actionSheet)Deprecated.default voidwillPresentActionSheet(UIActionSheet actionSheet)Deprecated.
-
-
-
Method Detail
-
actionSheetClickedButtonAtIndex
@Deprecated default void actionSheetClickedButtonAtIndex(UIActionSheet actionSheet, long buttonIndex)
Deprecated.Called when a button is clicked. The view will be automatically dismissed after this call returns
-
actionSheetDidDismissWithButtonIndex
@Deprecated default void actionSheetDidDismissWithButtonIndex(UIActionSheet actionSheet, long buttonIndex)
Deprecated.after animation
-
actionSheetWillDismissWithButtonIndex
@Deprecated default void actionSheetWillDismissWithButtonIndex(UIActionSheet actionSheet, long buttonIndex)
Deprecated.before animation and hiding view
-
actionSheetCancel
@Deprecated default void actionSheetCancel(UIActionSheet actionSheet)
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
-
didPresentActionSheet
@Deprecated default void didPresentActionSheet(UIActionSheet actionSheet)
Deprecated.after animation
-
willPresentActionSheet
@Deprecated default void willPresentActionSheet(UIActionSheet actionSheet)
Deprecated.before animation and showing view
-
-