Skip to content

Instantly share code, notes, and snippets.

@DonMag
Last active March 6, 2017 19:11
Show Gist options
  • Select an option

  • Save DonMag/a11b59f94d4d3cdf71df1a78009c8a78 to your computer and use it in GitHub Desktop.

Select an option

Save DonMag/a11b59f94d4d3cdf71df1a78009c8a78 to your computer and use it in GitHub Desktop.
// in cellForRowAtIndexPath
// always set to Checkmark
cell.accessoryType = UITableViewCellAccessoryCheckmark;
// if DON'T show checkmark for this row...
if (!bShowCheckmark) {
UIView* myAcc = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 24, 4)];
myAcc.backgroundColor = [UIColor whiteColor];
cell.accessoryView = myAcc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment