15

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

iOS.Lover
  • 5,923
  • 21
  • 90
  • 162

2 Answers2

22

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.

Nick Lockwood
  • 40,865
  • 11
  • 112
  • 103
7

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>
Kaptain
  • 1,358
  • 12
  • 20