将子视图添加到静态 UITableViewCell 不起作用
Adding subview to static UITableViewCell not working
我有一个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
当您拥有静态 tableView
时,您可以将出口直接连接到它的单元格,并像简单的子视图一样进行操作。所以只需连接插座并使用您的代码添加子视图。它会起作用
更新
使用以下代码添加子视图:
[cell addSubview:segment];
将您的代码移至
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
}
然后只引用方法
传递的cell
我有一个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
当您拥有静态 tableView
时,您可以将出口直接连接到它的单元格,并像简单的子视图一样进行操作。所以只需连接插座并使用您的代码添加子视图。它会起作用
更新
使用以下代码添加子视图:
[cell addSubview:segment];
将您的代码移至
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
}
然后只引用方法
传递的cell