我正在尝试从 UitableViewController 类访问自定义 UiTableViewCell(子类 UITableViewCell)上的标签属性。例如,我有 heightForRowAtIndexPath 方法,我需要访问标签。
这是我的代码:
- (CGFloat)tableView:(UITableView *)tv heightForRowAtIndexPath:(NSIndexPath *)indexPath {
// I need access to the custom UITableView Cell property here
}
有小费吗?甚至可以在 uiviewcontroller 中声明插座并将其链接到自定义 uitableviewcell 上的标签?
谢谢