// // 建立一個肯定按鈕」必定要注意不能在提醒控制器的按鈕的點擊方法內部用到提醒控制器本身」,不能把下面這句話放在block內部」否則會死循環,致使警告控制器不能銷燬"it
UITextField *textField = alertC.textFields.firstObject;io
UIAlertAction *ok = [UIAlertAction actionWithTitle:@"肯定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
hero.name = textField.text;
[self.tableView reloadData];
// [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
// [alertC dismissViewControllerAnimated:NO completion:nil];table
}];循環