UITableView分隔线_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UITableView分隔线

UITableView分隔线

 2014/6/3 21:39:02  wangtao169447  博客园  我要评论(0)
  • 摘要:问题1:在ios中使用UITableView时,当行数较少是,可能一屏幕能显示完全所有行,这时候会出现下面的问题,显示多余的分隔线图如下:解决方案://解决方案1//添加如下代码-(CGFloat)tableView:(UITableView*)tableViewheightForFooterInSection:(NSInteger)section{return0.1;}//解决方案2//添加如下代码UIView*v=[[UIViewalloc]init];//v
  • 标签:view

问题1:

在ios中使用UITableView时,当行数较少是,可能一屏幕能显示完全所有行,这时候会出现下面的问题,显示多余的分隔线

图如下:

解决方案:

//解决方案1

//添加如下代码
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 0.1;
}



//解决方案2
//添加如下代码

    UIView* v = [[UIView alloc]init];
    //    v.backgroundColor = [UIColor clearColor];
    //    _tableview.tableFooterView = v;
    self.myTableView.tableFooterView = v;

效果如下

在实现了上面的功能后,我发现在ios7中,分隔符不能完全填充整个UITableView,有了以下解决方案:

    UIEdgeInsets edgeInset = self.myTableView.separatorInset;
    self.myTableView.separatorInset = UIEdgeInsetsMake(edgeInset.top, 0, edgeInset.bottom, edgeInset.right);//修改分隔线长度
    self.myTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

效果如下:

 

希望能帮助到遇到同样问题的朋友。

如果你有更好的解决方案,欢迎分享。

发表评论
用户名: 匿名