I'm working in a iOS Swift 2.0 application. I can't figure out for the life of me on how to set the text on the right side of a UITableViewCell
just before the disclosure indicator chevron (besides creating a custom cell.accessoryView
).
Here is a screenshot of the "Settings app" doing exactly what I'm trying to achieve.
In Interface Builder, when setting up your cell, select the Right Detail style:
Then assign the value to the detailTextLabel
property:
cell.detailTextLabel.text = "Kilroy Was Here"