我有一个表和一个按钮,在其中打开另一个视图并向表中添加数字, 有2个字段,我希望他们来到表中的一个字段,我该怎么做?现在他们来到第一和第二。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return items.count;}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier =@"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:identifier];}
cell.textLabel.text = [items objectAtIndex:indexPath.row];
return cell;
}
- (IBAction)addNew:(id)sender {
[items addObject:textField.text];
[items addObject:textSecond.text];
addView.hidden = YES;
textField.text = @"";
textSecond.text = @"";
[tableAdd reloadData];
[textField resignFirstResponder];
[textSecond resignFirstResponder];
}