iOS 开发之UITableView的相关设置汇总

UITableView是我们开发中最常用的一个控件,几乎每一个app的开发中都会用上。今天这篇文章主要是将之前开发中常用的UITableView和UITableViewCell的一些相关设置做了一个总结。第一次写,值得纪念!

设置没有选中状态

cell.selectionStyle = UITableViewCellSelectionStyleNone;

取消tableView的右侧滚动条(垂直)、水平

_tableview.showsVerticalScrollIndicator = NO;
_tableView.showsHorizontalScrollIndicator = NO;

设置cell的右侧附件类型(勾、详情、详情加右箭头>)

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

去掉tableViewCell的行分割线

tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

设置分割线的位置 上左下右

if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {                 [self.tableView setSeparatorInset:UIEdgeInsetsMake(0, 45, 0, 0)];             }

设置cell分割线的颜色

[self.tableView setSeparatorColor:[UIColor clearColor]];

自定义cell分割线

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {  
 
   UITableViewCell *cell = nil;  
   cell = [tableView dequeueReusableCellWithIdentifier:@"cell"]; 

    if (cell == nil) {     

       cell = [[UITableViewCell   alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];       

       cell.accessoryView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"huicellacce"]]; 

       cell.backgroundColor = [UIColor clearColor]; //        cell.selected = YES;        

       UIImageView *imageViewSepE = [[UIImageView alloc]initWithFrame:CGRectMake(47, 49, 200, 1)];  

       imageViewSepE.image = [UIImage imageNamed:@"godline"];         [cell.contentView addSubview:imageViewSepE];

        }
}

刷新tableView的某个section

[_tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationFade];

刷新tableView的某行或几行

NSIndexPath *indexPath1=[NSIndexPath indexPathForRow:1 inSection:1];  NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];    [_tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,indexPath1, nil] withRowAnimation:UITableViewRowAnimationNone];

哈哈!第一次写,这是本人自己做的一点总结,如果还有需要补充的可以评论或者私信我!

你可能感兴趣的:(iOS 开发之UITableView的相关设置汇总)