IOS中为tableViewCell增加右侧标记(选中或者更多)

if ([self.selectWys containsObject:[self.initCitys objectAtIndex:indexPath.row]]) {
   tvCell.accessoryType = UITableViewCellAccessoryCheckmark;   
 }
else
 {
    tvCell.accessoryType = UITableViewCellAccessoryNone;
 }

 

你可能感兴趣的:(tableview)