标签:
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
1 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { 2 if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) 3 { 4 [self.tableView setSeparatorInset:UIEdgeInsetsZero]; 5 } 6 if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) 7 { 8 [self.tableView setLayoutMargins:UIEdgeInsetsZero]; 9 } 10 }
1 - (void)drawRect:(CGRect)rect { 2 CGContextRef context = UIGraphicsGetCurrentContext(); 3 CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor); 4 CGContextFillRect(context, rect); 5 6 //上分割线 7 CGContextSetStrokeColorWithColor(context,[UIColor whiteColor].CGColor); 8 CGContextStrokeRect(context,CGRectMake(0,0,rect.size.width,1)); 9 10 //下分割线 11 CGContextSetStrokeColorWithColor(context,[UIColor whiteColor].CGColor); 12 CGContextStrokeRect(context,CGRectMake(0,rect.size.height-1,rect.size.width,1)); 13 }
标签:
原文地址:http://www.cnblogs.com/jiangdaohong/p/4596217.html