tableview相关设置

隐藏分割线

_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;



取消tableviewcell的选中效果

cell.selectionStyle = UITableViewCellSelectionStyleNone;


设置tableviewcell的默认图片大小





    CGSize itemSize = CGSizeMake(YC_directionX(56), YC_directionX(56));//希望显示的大小

    UIGraphicsBeginImageContextWithOptions(itemSize, NO, UIScreen.mainScreen.scale);

    CGRectimageRect =CGRectMake(0.0,0.0, itemSize.width, itemSize.height);

    [cell.imageView.imagedrawInRect:imageRect];

    cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();



tableviewcell设置右侧图标

cell.accessoryType = UITableViewCellAccessoryNone;//cell没有任何的样式

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;//cell的右边有一个小箭头,距离右边有十几像素;

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;//cell右边有一个蓝色的圆形button;

cell.accessoryType = UITableViewCellAccessoryCheckmark;//cell右边的形状是对号;

你可能感兴趣的:(tableview相关设置)