iOS如何去除UITableView底部多余的分割线

如题所述

在viewDidLoad函数中加上此句代码:
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
即可去除UITableView底部多余行及分割线
温馨提示:内容为网友见解,仅供参考
无其他回答

iOS如何去除UITableView底部多余的分割线
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];即可去除UITableView底部多余行及分割线

iOS如何去除UITableView底部多余的分割线
在自定义UItableView的时候,当选择的style为Group时,往往在设置透明后分割线还在,为了去除,只要重新设置一个BackgroundView覆盖掉原来的即可: \/\/取消分割线 UIView *view= [ [ [ UIView alloc ] init ] autorelease]; [cell setBackgroundV...

iOS如何去除UITableView底部多余的分割线
,为了去除,只要重新设置一个BackgroundView覆盖掉原来的即可

UITableView每个cell之间的默认分割线怎么去掉
plain类型的tableview当显示的数据很少时,下面的cell即使不显示数据也会有分割线,可以通过下面这个函数去掉多余的分割线。- (void)setExtraCellLineHidden: (UITableView *)tableView { UIView *view =[ [UIView alloc]init];view.backgroundColor = [UIColor clearColor];[tableView setTableFooterView...

UIPickerView中间选中那个cell分割线如何去除
两种方法,第一种是在 Interface Builder 里面操作: 在 Interface Builder 中打开 storyboard 选中你要操作的 tableView 在右边的 Attributes Inspector 中,将 Separator 由 Default 改为 None 第二种是通过代码修改,在 viewDidLoad 中添加

ios tableview创建后只返回2cell屏幕有其它分割线怎么处理
两个办法:设置tableView style 为group 在Viewdidload中 加入 self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

tableview怎么去掉多余出来的分隔线
第一种方法 1、加方法 -(void)setExtraCellLineHidden: (UITableView *)tableView { UIView *view = [UIView new];view.backgroundColor = [UIColor clearColor];[tableView setTableFooterView:view];[view release];} 2、在 - (void)viewDidLoad { [super viewDidLoad];\/\/设置tableView不能...

iOS tableView 底部会有一段空白怎么去掉
你的tableView的Frame的高度是self.view.bounds.size.width,你确定 还有,你可以试试self.tableView.tableFooterView = [UIView new];

UITableViewController下面的多余的线如何去掉
UITableViewCellSeparatorStyleSingleLine, UITableViewCellSeparatorStyleSingleLineEtched \/\/ This separator style is only supported for grouped style table views currently} UITableViewCellSeparatorStyle;如果你要增加它的高度,只能自己定制了,把它设为styleNone,然后在cell里自己定制一些分隔线吧。

在ios中怎么设置cell的style
可以利用Tabview的separatorStyle属性来设置,选择其中的UITableViewCellSeparatorStyleNone 可去除cell之间的下划线。self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

相似回答