0

我的 UITableViewController 的 UITableView 被自定义原型 UITableViewCell 填充了四次:InfoCell *infoCell;

子类单元格包含UITextView *inputTextView;

nextButtonPressed我想从第一个单元格中获取文本时:

-(IBAction)nextButtonPressed:(id)sender {

NSString *firstCellText = ?
[dataSource objectAtIndex:dataIndex] setObject:firstCellText forKey:@"Texture"];
}

如何从 UITableView 的第一个 infoCell 中的 textView 获取文本?

4

1 回答 1

1

既然有一个 UITextView,为什么不让它成为你的 View Controller 的一个属性。当最初创建单元格并将其添加到您的单元格视图层次结构中时,它将被延迟创建。

然后,您可以在按下下一个按钮时使用 self.inputTextView 简单地访问它。

于 2012-09-19T20:28:56.180 回答