Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Title footer for Group in Setting bundle

How can I leave a message under group type in Setting bundle ? something like this :enter image description here

like image 600
iOS.Lover Avatar asked Feb 05 '12 11:02

iOS.Lover


2 Answers

It's documented here:

https://developer.apple.com/library/ios/#documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Articles/PSGroupSpecifier.html

You need to use a FooterText key inside your PSGroupSpecifier block.

like image 104
Nick Lockwood Avatar answered Oct 16 '22 07:10

Nick Lockwood


Use a FooterText key in your PSGroupSpecifier like this:

<dict>
    <key>Type</key>
    <string>PSGroupSpecifier</string>
    <key>Title</key>
    <string>My App Settings</string>
    <key>FooterText</key>
    <string>My custom footer text.</string>
</dict>
like image 42
Kaptain Avatar answered Oct 16 '22 07:10

Kaptain