我正在尝试编写秒表。在我的 AppController.m 中,我可以重置、启动和停止手表,...在我的 TableViewController 中,我有一个名为“list”的数组,列表中的所有项目都放入我的 TableView 中。现在我想将秒表(AppController.m)中的时间添加到数组“列表”中,就像我可以在 TableViewController.h 中添加按钮一样:
@implementation TableViewController
- (id)init
{
self = [super init];
if (self) {
list = [[NSMutableArray alloc] init];
}
return self;
}
-(IBAction)add:(id)sender {
[list addObject:[[TimeObj alloc] init]];
[tableView reloadData];
}
我真的不知道如何做到这一点,所以我不确定这是否可能。你知道如何做到这一点,或任何其他方式来解决这个问题?