码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 中隐藏UITableView最后一根分隔线

时间:2016-11-18 12:29:17      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:应用   elf   com   ati   等于   href   comm   sso   table   

最近在做弹出菜单的时候,使用到了FTPopOverMenu,遇到了箭头向下时,最后一根分割线十分不美观的问题。
由于这种菜单一般是不能滚动的,即设置了UITableView的滚动属性为NO。
我想了一种方法,是在最后一根分割线上添加一个视图,将其盖住。

UIView *lineView = [self viewWithTag:201];
if (!lineView) {
    lineView = [[UIView alloc] initWithFrame:CGRectZero];
}
lineView.frame = CGRectMake(5, menuRect.size.height-2, menuRect.size.width - 10, 2);
lineView.tag = 201;
lineView.backgroundColor = [FTPopOverMenuConfiguration defaultConfiguration].tintColor;
[self insertSubview:lineView aboveSubview:self.menuTableView];

但是这种做法很有局限性,只能应用在UITableView 不能滚动,并且UITableView的contentSize等于其frame.size的情况。

返回给作者后,作者给出了一个更加优雅的做法:

if (indexPath.row == _menuStringArray.count-1) {
        menuCell.separatorInset = UIEdgeInsetsMake(0, self.bounds.size.width, 0, 0);
    }else{
        menuCell.separatorInset = UIEdgeInsetsMake(0, FTDefaultMenuTextMargin, 0, 10+FTDefaultMenuTextMargin);
    }

上面这个设置写在CellForRow 方法中,明显这个方法更加优雅,将分割线设置偏移到屏幕外就好了。

iOS 中隐藏UITableView最后一根分隔线

标签:应用   elf   com   ati   等于   href   comm   sso   table   

原文地址:http://blog.csdn.net/u011619283/article/details/53214208

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!