我做了一个自定义UITableViewCell
,其中包含 label 和 asegmentcontrol
但是当我尝试访问元素中的元素时,cellforrowatindexpath
这些元素没有分配任何内存。单元实例已分配内存。我检查了xib并连接了插座。这是cellforrowatindexpath
-中的代码
SegmentCell *cell;
[tableView registerNib:[UINib nibWithNibName:@"SegmentCell" bundle:nil] forCellReuseIdentifier:@"SegmentCell"];
[tableView registerClass:[SegmentCell class] forCellReuseIdentifier:@"SegmentCell"];
cell = (SegmentCell *)[tableView dequeueReusableCellWithIdentifier:@"SegmentCell" forIndexPath:indexPath];
cell.title.text=@"Hell*emphasized text*o";
return cell;
标题是在打印描述中显示 nil 的标签