可能重复:
Save data from 1 page and add that data to a tableView
Jey家伙我有2个观点,第一个有UITableView。第二个具有textField,当用户按下第二页上的“保存”按钮时,我希望将textFields文本添加到tableView中。这是我正在使用的代码
- (IBAction)saveButton:(id)sender {
CheckListPracticeViewController * obj = [[CheckListPracticeViewController alloc]init];
[obj.cells insertObject:textField.text atIndex:0];
self dismissModalViewControllerAnimated:YES];
NSLog(@"%@ "[cells objectAtIndex:0]);
[obj.myTableView reloadData];
}
表格视图不会添加新文本,有谁知道我的问题?非常感谢您的帮助:D