摘要: 要改变tableHeaderView的高度,必须为其重新设置view。1 self.headerView.height = self.textView.bottom + 10;2 self.tableView.tableHeaderView = self.headerView; 阅读全文
posted @ 2013-08-22 21:39 ubersexual 阅读(1475) 评论(0) 推荐(0) 编辑
摘要: 项目时,设置了table的分割线,但是它就是害羞,不出来,,,找了很久也没找到原因,所以就自定义一个。实现如下:UITableView中将分割线样式改为None。1 tableView.separatorStyle = UITableViewCellSeparatorStyleNone;自定义UITableViewCell中复写- (void)drawRect:(CGRect)rect方法 1 - (void)drawRect:(CGRect)rect 2 { 3 CGContextRef context = UIGraphicsGetCurrentContext(); 4 ... 阅读全文
posted @ 2013-08-22 11:47 ubersexual 阅读(633) 评论(0) 推荐(0) 编辑