1.隐藏UITableViewCell的分隔线
[self.myTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
UITableViewCellSeparatorStyle有如下几种
typedef NS_ENUM(NSInteger, UITableViewCellSeparatorStyle) {
UITableViewCellSeparatorStyleNone,
UITableViewCellSeparatorStyleSingleLine,
// This separator style is only supported for grouped style table views currently
UITableViewCellSeparatorStyleSingleLineEtched
};
本文出自 “羊仔” 博客,请务必保留此出处http://5934497.blog.51cto.com/5924497/1636419
原文:http://5934497.blog.51cto.com/5924497/1636419