TableView,自定义TableViewCell

 自定义Table

原理:

http://blog.jobbole.com/67272/

 

http://www.cnblogs.com/wangxiaofeinin/p/3532831.html

 

补充:

1,两个tableview ,写了函数 commitEditingStyle 其中一个tableview 怎样让它不出现delete按钮?   

  在canEditRowAtIndexPath函数中 将不需要出现delete的tableview的 return  NO;

 

2,TableViewCell自定义分割线

实现如下: 
UITableView中将分割线样式改为None 

tableView.separatorStyle = UITableViewCellSeparatorStyleNone;  

自定义UITableViewCell中复写- (void)drawRect:(CGRect)rect方法 

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);
    CGContextFillRect(context, rect);
    
    //上分割线,
    //    CGContextSetStrokeColorWithColor(context, RGB(0xee,0xef,0xf0).CGColor);
    //    CGContextStrokeRect(context, CGRectMake(72, -1, rect.size.width - 10, 0.5));
    
    //下分割线
    CGContextSetStrokeColorWithColor(context, RGB(0xee,0xef,0xf0).CGColor);
    CGContextStrokeRect(context, CGRectMake(72, rect.size.height, rect.size.width-72, 1));
}

 

posted @ 2015-05-24 17:02  尘恍若梦  阅读(245)  评论(0编辑  收藏  举报