需求:UITableViewCell设置左右两边间距
在自定义的UITableViewCell里添加间距10:
//UITableViewCell设置左右两边间距
- (void)setFrame:(CGRect)frame {
frame.origin.x += 10;
frame.size.width -= 2 * 10;
[super setFrame:frame];
}
需求:UITableViewCell设置左右两边间距
在自定义的UITableViewCell里添加间距10:
//UITableViewCell设置左右两边间距
- (void)setFrame:(CGRect)frame {
frame.origin.x += 10;
frame.size.width -= 2 * 10;
[super setFrame:frame];
}
本文标题:UITableViewCell设置左右两边间距
本文链接:https://www.haomeiwen.com/subject/axaucltx.html
网友评论