我有 UIButton 、 UILable 和 UITextfield 的表格视图,我在 cellForRowAtIndexPath 中写过:
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
[cell addSubview:button];
[cell addSubview:lable];
[cell addSubview:textfield];
我已经在标签上设置了文本,并且文本字段工作正常。当我更改文本字段上的文本时也可以正常工作。
而且我还有其他用于保存数据的按钮 - 它位于 tableview 的外侧,但在同一个视图中。
我的问题是当我单击保存按钮时,我想获取 tableview 文本字段的文本。