-
我在UITableView(六)數(shù)據(jù)更新(增、刪、改)中新增方法的數(shù)據(jù)寫的是固定數(shù)據(jù),不能自己添加。所以在這篇會(huì)用UIAlertController把新增改為自己輸入數(shù)據(jù)的方式。
- 小tips
- 蘋果在iOS8之后用
UIAlertController替代了UIActionSheet和UIAlertView
-
- (IBAction)Add:(UIButton *)sender {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"新增" message:nil preferredStyle:UIAlertControllerStyleAlert];
// 添加文本框
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"請(qǐng)輸入title";
}];
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"請(qǐng)輸入價(jià)格";
}];
// 按鈕
[alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
// 確定按鈕
[alert addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action){
WXData *data = [[WXData alloc]init];
data.title = alert.textFields[0].text;
data.price = alert.textFields[1].text;
// data.buyCount = @"22";
data.icon = @"2c97690e72365e38e3e2a95b934b8dd2";
// 在數(shù)據(jù)源的第一個(gè)位置插入數(shù)據(jù)
[self.list insertObject:data atIndex:0];
// 刷新插入行,有動(dòng)畫效果
[self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationLeft];
}]];
// 顯示控制器
[self presentViewController:alert animated:YES completion:nil];
// UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"111" message:@"2222" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"好的", nil];
// [alert show];
// 刷新全部數(shù)據(jù),但是沒有動(dòng)畫效果
// self.tableView reloadData];
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。