我在自定义单元格中有自定义tableview单元格我正在使用两个文本字段(名字,年龄)。我的问题是如何处理这些textfields.if用户没有填写这些细节我们显示警报,假设用户填写详细信息如何获取数据。 贝娄是我的tableview自定义单元格图像。
答案 0 :(得分:1)
将所有文字字段添加到NSMutableArray
cellForRowAtIndexPath
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
[mutableArrary addObject:cell.yourTextField];
return cell;
}
之后你的按钮动作就是这样的:
-(IBAction)buttonAction:(id)sender{
for (UITextField*textField in mutableArray){
NSLog(@"%@",textField.text);
}
}
检查是否有任何文字为零,然后你可以显示警告,如填写所有细节。