我有一个tableview,其中根据遇到的数据类型为很多行创建/重用自定义单元格(例如,对于日期类型,单元格的文本字段从datePicker和枚举类型中选取所选日期,它从下拉选择器中选择所选数据)。现在页脚上有一个按钮,需要从每个单元格中获取数据并处理它以显示更多的视图控制器。
由于单元格中的数据在选择后(从日期选择器或下拉菜单或键盘)显示正常,但我们如何以页脚按钮方法捕获这些数据。
以下是代码: -
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [valueArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if(cell == nil) {
cell = [[TableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
NSString *values = [valueArray objectAtIndex:indexPath.row];
NSString *titles = [titleArray objectAtIndex:indexPath.row];
if([titles isEqualToString:@“enumType”]){
cell.headerInfo.hidden = true;
cell.valueObtained.hidden=true;
UITextField * scheduelText = [[UITextField alloc]initWithFrame:CGRectMake(20, 30, 130, 30)];
NSMutableArray* enumArray = [[NSMutableArray alloc] init];
[enumArray addObject:@"BUSINESS"];
[enumArray addObject:@"CUSTODIAL"];
[enumArray addObject:@"INDIVIDUAL"];
downPicker = [[DownPicker alloc] initWithTextField:scheduelText enumArray];
scheduelText.text = downPicker.text;
[cell addSubview:scheduelText];
}
else if([titles isEqualToString:@"DateType”]){
cell.headerInfo.hidden = true;
cell.valueObtained.hidden=true;
UITextField *dateText = [[UITextField alloc]initWithFrame:CGRectMake(20, 30, 130, 30)];
dateText.placeholder=@"Date";
dateText.inputView = self.datePicker;
UIToolbar *toolBar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 44)];
UIBarButtonItem *doItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(dateDoneButton)];
[toolBar setItems:@[doItem]];
dateText.inputAccessoryView = toolBar;
[cell addSubview:dateText];
}
else if([titles isEqualToString:@“TextType”]){
cell.headerInfo.hidden = true;
cell.valueObtained.hidden=true;
UITextField * accountText = [[UITextField alloc]initWithFrame:CGRectMake(20, 30, 130, 30)];
accountText.returnKeyType = UIReturnKeyDone;
accountText.delegate = self;
accountText.placeholder=@"Account Name";
[accountText setTextColor:[UIColor blackColor]];
[accountText setBorderStyle:UITextBorderStyleNone];
[cell addSubview:accountText];
}
else{
cell.valueObtained.text = values;
cell.headerInfo.text = titles;
}
return cell;
}
- (void)submitButtonPressed:(id)sender
{
//Need to capture the cell data here ?
}
请帮帮忙。
答案 0 :(得分:0)
您可以为每个文本字段设置标记。并从标签获取UITextField。
- (void)submitButtonPressed:(id)sender
{
UITableViewCell *cell =[tableview cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
UITextField *txtField =[cell viewWithTag:TAG];
NSLog(@"%@",txtField.text);
}
此外,请为此使用自定义单元格。
答案 1 :(得分:0)
您的代码似乎存在问题:
[cell addSubview:scheduelText];
[cell addSubview:dateText];
[cell addSubview:accountText];
每次出列单元格都会向单元格添加新的子视图,但从未删除。 在我的建议中,您最好使用不同的标识符标识4种单元格,或者在将单元格出列时删除子视图。
答案 2 :(得分:0)
由于您使用的是动态表视图,因此只有一个选项。委派您的控件并将其值存储在' endEditing'中。您无法使用viewTag,因为如果在屏幕上看不到视图,则视图将被销毁。 另一种选择是使用静态tableview,然后你可以为每个控件创建@IBOutlets。