在iOS 5中是否有标准的方法来执行删除确认,如联系人?

gle*_*tov 2 iphone cocoa-touch ios

在iOS 5中是否有标准方式显示删除确认,如此截图中所示?

如果没有标准方法,任何解决方案都会很好.

删除确认

mat*_*way 12

这是一个UIActionSheet破坏性按钮设置.请参阅文档.

例如

// Create the action sheet
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:nil 
                                                   delegate:self 
                                          cancelButtonTitle:@"Cancel" 
                                     destructiveButtonTitle:@"Delete" 
                                         otherButtonTitles:nil];

...

- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if (buttonIndex == actionSheet.destructiveButtonIndex) {
        // Do the delete
    }
}
Run Code Online (Sandbox Code Playgroud)