Several of the Apple-provided apps have informational/help text in their settings. For example, the Keyboard settings shows:

Screenshot of Keyboard settings

which includes the help text "Double tapping the space bar will...".

I know I can do this in my app by adding a group footer, but is it possible to do this in the settings app by adding a field to the plist file in my Settings.bundle?

link|improve this question
feedback

3 Answers

up vote 22 down vote accepted

According to recently changed Apple document, a FooterText key is available in PSGroupSpecifier dictionary, which is only available in iOS 4.0 or later.

Reference: http://developer.apple.com/iphone/library/documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Articles/PSGroupSpecifier.html#//apple_ref/doc/uid/TP40007009-SW1

link|improve this answer
feedback

The way I do it, and the way I have seen other third parties apps do it is just to use an informative Title as a PSGroupSpecifier

I have only seen the native Apple apps do it in this other, slightly nicer way. I expect the ability is buried deep in the undocumented regions of the SDK.

link|improve this answer
feedback

Using FooterText key in PSGroupSpecifier is what you need to use. And it is documented as xesique already said.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.