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

if ([self.selectWys containsObject:[self.initCitys objectAtIndex:indexPath.row]]) {
   tvCell.accessoryType = UITableViewCellAccessoryCheckmark;   
 }
else
 {
    tvCell.accessoryType = UITableViewCellAccessoryNone;
 }
原文地址:https://www.cnblogs.com/ygm900/p/3154729.html