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

ios, ios7, uitableview

Solution

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.

Problem

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?

Original source

Related problems