UITableview索引是比较常用的功能,那么添加索引后会造成cell的contentview左移, 导致cell的分割线不能显示在索引下面, 解决办法:
在tableviewcell类里面重写content view的宽度
- (void)layoutSubviews{
[superlayoutSubviews];
self.contentView.width = ScreenWidth;
}
UITableview索引是比较常用的功能,那么添加索引后会造成cell的contentview左移, 导致cell的分割线不能显示在索引下面, 解决办法:
在tableviewcell类里面重写content view的宽度
- (void)layoutSubviews{
[superlayoutSubviews];
self.contentView.width = ScreenWidth;
}
本文标题:ios UITableview 添加索引后整体内容左移
本文链接:https://www.haomeiwen.com/subject/ybgluftx.html
网友评论