如何缩小 UITableViewController 中的静态单元格宽度
Posted
技术标签:
【中文标题】如何缩小 UITableViewController 中的静态单元格宽度【英文标题】:How to shrink static cells width in UITableViewController 【发布时间】:2014-06-29 10:56:27 【问题描述】:我想做类似的事情:
我可以用动态单元格做到这一点,但不能用静态单元格来解决这个问题
【问题讨论】:
【参考方案1】:我继承了我的 UITableViewCell,并在我的子类中重写了 layoutSubviews 方法:
- (void)layoutSubviews
self.bounds = CGRectMake(self.bounds.origin.x,
self.bounds.origin.y,
self.bounds.size.width/3,
self.bounds.size.height);
[super layoutSubviews];
【讨论】:
以上是关于如何缩小 UITableViewController 中的静态单元格宽度的主要内容,如果未能解决你的问题,请参考以下文章