TableView 隐藏多余的分割线

- (void)setExtraCellLineHidden: (UITableView *)tableView
{
    UIView *view = [UIView new];
    view.backgroundColor = [UIColor clearColor];
    [tableView setTableFooterView:view];
}

//调用
    [self setExtraCellLineHidden:self.tableView];
时间: 2024-11-07 09:47:47

TableView 隐藏多余的分割线的相关文章

Menu菜单属性添加分割线与隐藏多余的分割线

  MyMenu.AutoLineReduction := maAutomatic; {默认会自动隐藏多余的分割线}   //MyMenu.AutoLineReduction := maManual;  {设定为手动会显示所有分割线} 参考链接:http://www.cnblogs.com/del/archive/2008/02/04/1064288.html 效果图:

tableView 隐藏多余分割线,tableView分割线增加15像素

1 //隐藏分割线 2 [self setExtraCellLineHidden:_tableView]; 3 //隐藏多余分割线 4 -(void)setExtraCellLineHidden: (UITableView *)tableView 5 { 6 UIView *view = [UIView new]; 7 view.backgroundColor = [UIColor clearColor]; 8 [tableView setTableFooterView:view]; 9 } 1

tableview隐藏多余分割线

- (void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view =[ [UIView alloc]init]; view.backgroundColor = [UIColor clearColor]; [tableView setTableFooterView:view]; [tableView setTableHeaderView:view]; }

隐藏UITableView多余的分割线

先看看没有隐藏是什么效果以及代码是什么情况,这样更加直观 实现代码如下:(.h文件) #import "TableViewController.h" @interface TableViewController () <UITableViewDataSource, UITableViewDelegate> @property (nonatomic, strong) UITableView *myTableView; @property (nonatomic, strong)

猫猫学iOS之tableview隐藏最下边多余的cell

效果图 最下方cell显示的不够了,但是猫猫不想看到那些线,这里共享一种方法 解决方法 在- (void)viewDidLoad 方法中写入 //隐藏多余cell self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; 就可以达到目的了 看图

css隐藏多余文字显示...

<style> .ellipsis{width:100px; overflow:hidden; text-overflow:ellipsis; white-space: nowrap;} .ellipsis:hover{overflow: visible;} </style> <div class="ellipsis">css隐藏多余文字并用...表示未完的内容</div> 使用到的css属性 width:***, overflow:hi

margin隐藏最后的分割线

<style> *{margin: 0;padding: 0;} #demo li{ border-bottom: 1px solid #ccc; } #demo ul{ margin-bottom: -1px; } #demo{ overflow: hidden; } </style> <div id="demo"> <ul> <li>写个内容其实好困难啊...</li> <li>写个内容其实好困难啊

tableview隐藏分割线的方法

隐藏tableview的分割线 方法1: 设置tableview的separatorStyle为UITableViewCellSeparatorStyleNone, myTableView.separatorStyle = UITableViewCellSeparatorStyleNone 方法2: 还有一种方法是定义一个空的UIView,然后将这个UIView设置为tableview的footer UIView *footer =[[UIView alloc] initWithFrame:CG

ios开发技巧之tableView去掉多余的空行分割线,自定义cell分割线

如何去掉tableView多余的空白行分割线? 我们经常会遇到下面的问题,tableView表视图上面的内容不是很多,但是 tableView 却帮忙把 整个屏幕都用 空白行分割线占满了: 如下图: 代码如下: // // TableViewController.m // Test // // Created by on 15/1/25. // Copyright (c) 2015年 http://blog.csdn.net/yangbingbinga. All rights reserved.