我有 UIViewController
,其中包含文字字段,日期字段和按钮。另外,我有 UITableViewController
,其Mutablearray
。如何从文本字段和日期字段中传递值以在另一个类的Mutablearray
中创建新项?
修改
我的 UIViewController
所在的文本和日期字段为空(有点需要帮助)。我的 UITableViewController
位于以下位置:
@interface TableView ()
@end
@implementation TableView
- (void)viewDidLoad
{
[super viewDidLoad];
items = [[NSMutableArray alloc] initWithObjects:@"one", @"two", @"three", @"four", nil];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return items.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"TodoItemRow"];
cell.textLabel.text= [items objectAtIndex:indexPath.row];
return cell;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
@end