应PM的需求,cell之间有分割区以示区分;
首先将分割区用UIView添加到cell的底部,但是会出现下面的问题
于是想到了分区写,结果因为plainStyle的sectionHeaderView悬停的问题,放弃了;
进而将style改为UITableViewStyleGroup,但是最上面的Cell总是距离UITableView的顶端差35pix,通过在stackOverFlow上寻找答案,终于用self.tableView.headerView = [[UIView alloc] initWithFram:CGRectMake(0, 0, self.view.bound.size.width, 0.0001)]解决此问题,达到最终想要的效果。