How can I leave a message under group type in Setting bundle ? something like this :
Asked
Active
Viewed 5,466 times
15

iOS.Lover
- 5,923
- 21
- 90
- 162
2 Answers
22
It's documented here:
You need to use a FooterText
key inside your PSGroupSpecifier
block.

Nick Lockwood
- 40,865
- 11
- 112
- 103
-
Can we add this programmatically? – Nishant Jan 18 '16 at 05:36
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