清除UITableView底部多余的分割线

1、加方法

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

2、在

- (void)viewDidLoad

{

    [super viewDidLoad];

    //设置tableView不能滚动

    [self.tableView setScrollEnabled:NO];

    //在此处调用一下就可以啦 :此处假设tableView的name叫:tableView

    [self setExtraCellLineHidden:self.tableView];

}

时间: 2024-10-15 09:25:30

清除UITableView底部多余的分割线的相关文章

iOS学习之 删除UItableView的多余分割线

删除UItableView的多余分割线 self.sceneTableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

隐藏UITableView多余的分割线

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

iOS UITableView 去除多余分割线

在UITableView初始化时加上以下代码即可: self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; 效果演示: iOS UITableView 去除多余分割线

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

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

cell去掉底部多余的表格线

//去掉底部多余的表格线 [tableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]]; //最后一行分隔线顶头显示 //http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working static void setLastCellSeperatorToLeft(UITableViewCell*

UITableView去除多余分割线

- (void)removeExcessSplitLineOfTableView:(UITableView *)tableView { UIView *v = [[UIView alloc]init]; v.backgroundColor = [UIColor clearColor]; tableView.tableFooterView = v; }

[Android Pro] android控件ListView顶部或者底部也显示分割线

reference to  :  http://blog.csdn.net/lovexieyuan520/article/details/50846569 在默认的Android控件ListView在顶部是不显示分割线的,但是我们可以使用一些技巧来显示.我们先来看下默认情况下ListView显示的效果: 可以看到顶部是没有分割线的,但是有时候我们的美工硬是在上面画了一条分割线,没办法,我们也得加上,我们在ListView顶部加上一个Header就可以实现,代码如下 listView.addHea

IOS UITableView 底部添加按钮

一 要求效果 实现效果,在UITableView最底部添加提交按钮. 可以通过UITableView tableFooterView 实现 // accessory view below content. default is nil. not to be confused with section footer @property (nonatomic, retain) UIView *tableFooterView; 二 代码实现 - (void)viewDidLoad {     [sup

UITableView底部FooterView实现上拉刷新

转载自:http://carlme.blog.163.com/blog/static/183716327201272421728204/ @interface FooterViewTestViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>{ // 表格数据数组,因为是演示代码,直接定义为数组 NSMutableArray *tableData; // 下拉时显示的数据 NSMutableA