I would like to make an alert type box so that when the user tries to delete something, it says, "are you sure" and then has a yes or no for if they are sure. What would be the best way to do this in iphone?
|
|
A You can create a
That will display the message. Then to check whether they tapped delete or cancel, use this:
Make sure in your header file ( Hope that helps |
||||
|
|
|
Everyone's saying UIAlertView. But to confirm deletion, UIActionSheet is likely the better choice. See When to use a UIAlertView vs. UIActionSheet |
|||
|
|
|
UIAlertView seems the obvious choice for confirmation. Set the delegate to the controller and implement the UIAlertViewDelegate protocol http://developer.apple.com/library/ios/#documentation/uikit/reference/UIAlertViewDelegate_Protocol/UIAlertViewDelegate/UIAlertViewDelegate.html |
|||
|
|
|
Use the UIAlertView class to display an alert message to the user. |
|||
|
|
|
Use an UIAlertView:
Make sure you implement:
To handle the response. |
|||
|
|
|
To pop an alert message use UIAlertView.
Once you set the delegate as self you can perform your action on this method
|
|||
|
|