標籤:ios 8 uiedgeinsets separatorinset layoutmargins cell 分割線 uitableviewcell
//加入如下代碼-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) { [tableView setSeparatorInset:UIEdgeInsetsZero]; } if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) { [tableView setLayoutMargins:UIEdgeInsetsZero]; } if ([cell respondsToSelector:@selector(setLayoutMargins:)]) { [cell setLayoutMargins:UIEdgeInsetsZero]; }}
iOS 7
@property (nonatomic) UIEdgeInsets separatorInset NS_AVAILABLE_IOS(7_0) UI_APPEARANCE_SELECTOR; // allows customization of the frame of cell separators
iOS 8
@property(nonatomic) UIEdgeInsets layoutMarginsDescription The default spacing to use when laying out content in the view.Availability iOS (8.0 and later)Declared In UIView.hReference UIView Class Reference
本文出自 “碼路” 部落格,請務必保留此出處http://roybaby.blog.51cto.com/1508945/1558182
iOS 8 UITableViewCell 分割線 靠左對齊