我有我的tableView,一個BarButtonItem顯示我這個報警控制器:Objc - UIAlertController按鈕細胞添加到TableView中
UIAlertController * alertController = [UIAlertController alertControllerWithTitle: @"Feed RSS: info?"
message: @""
preferredStyle:UIAlertControllerStyleAlert];
[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Feed URL";
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
textField.borderStyle = UITextBorderStyleRoundedRect;
}];
[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Feed Title";
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
textField.borderStyle = UITextBorderStyleRoundedRect;
}];
[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Feed category";
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
textField.borderStyle = UITextBorderStyleRoundedRect;
}];
[alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
NSArray * textfields = alertController.textFields;
UITextField * urlfield = textfields[0];
UITextField * titlefield = textfields[1];
UITextField * categoryfield = textfields[2];
}]];
[self presentViewController:alertController animated:YES completion:nil];
現在,我想說的是,當我按下「確定」,在警報控制器,其中一個文本字段的文本寫入tableview的第一個單元格中。接下來,如果我輸入其他數據,我將不得不出現在tableview的第二個單元格中,依此類推。
根據你的,我應該怎麼辦呢? 我必須修改這部分嗎?
[alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
謝謝!
補充細胞生成的代碼。然後,我可以添加答案顯然 – Subramanian
@Subramanian我對細胞產生任何代碼,因爲我無法創建它。當我點擊'OK'按鈕時,必須創建單元格,現在我只有一個空的動態tableView – Taprolano