Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get checkmark on left side of UITableViewCell on iOS 7, like in Settings?

In iOS Settings > Wi-Fi for example, the cell's checkmark is on the left (of the connected network), with the disclosure button on the right.

I need this. Is there a standard way in iOS 7 to get this?

like image 523
meaning-matters Avatar asked Feb 08 '14 16:02

meaning-matters


1 Answers

Without using a custom cell, you may prefer UITableViewCellStyleDefault styled cell. It has an optional imageView, use checkmark as an image.

Or, you can use unicode symbols for checkmarks. It is a pretty neat solution and greatly explained here.

like image 70
mkubilayk Avatar answered Oct 24 '22 17:10

mkubilayk