需要在1行中取2个坐标

时间:2012-09-05 07:25:55

标签: ios iphone xcode uitableview row

我有一个表和一个按钮,在其中打开另一个视图并向表中添加数字, 有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];


 }

0 个答案:

没有答案