Skip to content

Commit

Permalink
Update delegate method documentation comments for accuracy.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 637973862
  • Loading branch information
Icycle authored and material-automation committed May 28, 2024
1 parent 2213969 commit 100bbde
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions components/Dialogs/src/MDCAlertControllerDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,22 @@
@optional

/**
Informs the receiver that the alert controller will appear on the screen or the application is
entering the foreground.
Informs the receiver that the alert controller will appear on the screen.
*/
- (void)alertController:(nonnull MDCAlertController *)alertController willAppear:(BOOL)animated;

/**
Informs the receiver that the alert controller appeared on the screen or the application has
entered the foreground.
Informs the receiver that the alert controller appeared on the screen.
*/
- (void)alertController:(nonnull MDCAlertController *)alertController didAppear:(BOOL)animated;

/**
Informs the receiver that the alert controller will disappear from the screen or the application is
entering the background.
Informs the receiver that the alert controller will disappear from the screen.
*/
- (void)alertController:(nonnull MDCAlertController *)alertController willDisappear:(BOOL)animated;

/**
Informs the receiver that the alert controller disappeared from the screen or the application has
entered the background.
Informs the receiver that the alert controller disappeared from the screen.
*/
- (void)alertController:(nonnull MDCAlertController *)alertController didDisappear:(BOOL)animated;

Expand Down

0 comments on commit 100bbde

Please sign in to comment.