每次进入 TableView 时如何在数组中添加一个对象我将此代码放在 viewDidLoad 和 viewDidAppear 方法中,但它似乎不起作用:
- (void)viewDidLoad
{
[super viewDidLoad];
if (!myArray) {
myArray = [[NSMutableArray alloc] init];
}
[peopleListe insertObject:[NSDate date] atIndex:0];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
NSLog(@"%@",myArray);
}
当我将此代码放在按钮中时,它可以工作
谢谢您的帮助