我有static UITableView
。我正在尝试以编程方式将UISegmentedControl
添加到第三个单元格。这是代码:
UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:@[@"First", @"Second"]];
segment.frame = CGRectMake(0, 0, 50, 30);
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:2 inSection:1]];
[cell.contentView addSubview:segment];
调用代码时,不会添加SegmentedControl
。
然后我尝试添加UILabel
,但这也不起作用。
我无法将其放在该方法中,因为我在选择按钮时添加了SegmentedControl
答案 0 :(得分:1)
如果您有静态tableView
,则可以直接将插座连接到其单元格,并像简单的子视图一样操作。所以只需连接插座并使用您的代码添加子视图。它会起作用
<强>更新强>
使用以下代码添加子视图:
[cell addSubview:segment];
答案 1 :(得分:0)
将代码移至
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
}
然后只引用方法
传递的cell