标签:style blog http color os io 文件 art
iOS7上tableView的分割线左边短了一点,要实现和iOS6中的效果还是有方法的,UITableView头文件里个属性:
@property (nonatomic) UIEdgeInsets separatorInsetNS_AVAILABLE_IOS(7_0)UI_APPEARANCE_SELECTOR; // allows customization of the frame of cell separators
在viewDidLoad里实现如下代码:
if ([m_tableView respondsToSelector:@selector(setSeparatorInset:)]) { [m_tableView setSeparatorInset:UIEdgeInsetsZero]; }
m_tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLineEtched;
看曾宪华开源代码中实现的效果,感谢开源
实现iOS7上tableView的分割线像iOS6中的效果,布布扣,bubuko.com
标签:style blog http color os io 文件 art
原文地址:http://blog.csdn.net/quanqinyang/article/details/38385277