问题
How can I leave a message under group type in Setting bundle ? something like this :
回答1:
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.
回答2:
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>
来源:https://stackoverflow.com/questions/9148858/title-footer-for-group-in-setting-bundle