How to get un-editable text displaying in iPhone settings display
I've been able to add an entry to the settings display for my iPhone app, but that text is editable and I don't want that. I want it to show up such that it's a rounded text bar and on the left it shows "My favorite color is.." and on the right it 开发者_StackOverflow社区always shows "Green"
How is this accomplished?
From iOS Application Programming Guide:
The title type displays a read-only string value. You can use this type to display read-only preference values. (If the preference contains cryptic or nonintuitive values, this type lets you map the possible values to custom strings.)
The key for this type is PSTitleValueSpecifier.
精彩评论