我的一个视图中有一个表,我想使用该表来允许用户输入数据。为此,我创建了一个完美运行的自定义 UITableViewCell。
尝试从每个单元格中取出文本时出现了我的问题。我浏览了所有文档,但找不到任何解决方案。任何帮助将非常感激!
这个方法的代码是:
Subject *subject = [self.arrayOfSubjects objectAtIndex:i];
AddSubjectDetailsCell *cell;
NSIndexPath *indexPath = [[NSIndexPath alloc] initWithIndex:i];
cell = [tableView cellForRowAtIndexPath:indexPath];
subject.title = cell.subjectTitleField.text;
subject.room = cell.subjectRoomField.text;
subject.teacher = cell.subjectTeacherField.text;
有没有人可以将常规单元格转换为自定义的一种或另一种方式来从文本字段中提取文本?
谢谢!