縮短 UITableViewCell 的寬度
但是要改變 UITableViewCell 的 width 的話就有幾種作法:
- Change UITableView frame
- Subclass UITableViewCell + Override setFrame:
- Make normal UITableViewCell.backgroundColor = [UIColor clearColor], then customize yourself.
Here is your snippet:
- (void)setFrame:(CGRect)frame
{
frame.origin.x += inset;
frame.size.width -= 2 * inset;
[super setFrame:frame];
留言
張貼留言