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

iOS 8 UITableViewCell 分割线 左对齐

时间:2014-09-25 23:39:48      阅读:218      评论:0      收藏:0      [点我收藏+]

标签: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 layoutMargins
Description   The default spacing to use when laying out content in the view.
Availability  iOS (8.0 and later)
Declared In   UIView.h
Reference UIView Class Reference


本文出自 “码路” 博客,请务必保留此出处http://roybaby.blog.51cto.com/1508945/1558182

iOS 8 UITableViewCell 分割线 左对齐

标签:ios 8 uiedgeinsets separatorinset layoutmargins cell 分割线 uitableviewcell

原文地址:http://roybaby.blog.51cto.com/1508945/1558182

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