tableview的那些事儿tableview和cell相关iOS 开发

TableView使用过程中遇到的那些坑

2016-06-12  本文已影响451人  小码农_gjw

1.设置tableView线条顶满格

self.tableView.separatorInset=UIEdgeInsetsZero;   // iOS7+

self.tableView.layoutMargins=UIEdgeInsetsZero;   // iOS8+

cell.separatorInset=UIEdgeInsetsZero;    // iOS7+

cell.layoutMargins=UIEdgeInsetsZero;    // iOS8+

2.样式设置

UITableViewStylePlain:系统默认样式,section之间无分割线,具有悬浮效果

UITableViewStyleGrouped:section之间有分割线,不具有悬浮效果,使用时注意设置tableView和setion的header和footer的高度

3.点击cell跳转到下一页面返回后样式仍然为选中状态

- (void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {

       [tableView deselectRowAtIndexPath:indexPath animated:YES];

}

上一篇 下一篇

猜你喜欢

热点阅读