1.cell右侧有空白(参考https://blog.csdn.net/qq_14991385/article/details/48475463)
我仅仅知道这一个方法,比较简单。四行代码就搞定了。
当然,首先需要自定义一个UITableViewCell的子类。
然后在.m文件中,重写一下方法
-
(void)setFrame:(CGRect)frame{
frame.size.width = [UIScreen mainScreen].bounds.size.width;
frame.origin.x = 0;[super setFrame:frame];
}
我在这里重新设置这个子类得到的frame的宽度为屏幕的宽度,x坐标从0开始,将设置好的值发送给他的父类也就是UITableViewCell来执行。
网友评论