添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗?
假设你:
- 向 UITableViewCell 内容 View 添加一些 subview (例如 UILabel)
- 然后使用 label.frame = CGRectMake(... 方法设置 UILabel 大小/位置
- 那么 UITableViewCell 的框架大小是否会自动更改以适应这一点 - 即,如果您使用 tableViewCell.contentView.frame.size.height,这应该是恰好适合 subview 所需的总高度吗?
Best Answer-推荐答案 strong>
我不这么认为......这似乎真的不合逻辑。您可以通过 UITableView 属性 rowHeight 或通过实现 UITableViewDelegate 方法为单元格设置框架高度
- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath
关于iphone - 添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/5304301/
|