1 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"確認" message:@"確認刪除嗎?" preferredStyle:UIAlertControllerStyleAlert]; 2 3 UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) { 4 //取消處理 5 }]; 6 7 UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"確認" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { 8 //確認處理 9 }]; 10 11 [alert addAction:action1]; 12 [alert addAction:action2]; 13 [self.navigationController presentViewController:alert animated:YES completion:nil];