我正在尝试从我的 UITableViewController 中获取一个子类 UITableViewCell(类称为“MasterCell”),并更改 IndexPath。假设,我将获得第一行的单元格:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:0];
MasterCell *cell = (MasterCell *)[self.tableView cellForRowAtIndexPath:indexPath];
这发生在我的 viewWillAppear 方法中。不幸的是,调试时单元格为零。
我有不同的单元格/行,我必须在 viewWillAppear 方法中更改一些值。你对我有什么提示吗?