I have a Custom UITableViewCell (no tableview only the cell entrierly on its own in a UIView class), I can get the UITableViewCellAccessoryCheckmark to display normally in the UITableViewCell however I am woundering if there is a way to bring it in form the edge a little?
this is how I am setting my accessory type.
selectAllCell.accessoryType = UITableViewCellAccessoryCheckmark;
Make a subclass of UITableViewCell, and then create your own accessoryView.
In your CustomTableViewCell: