Title footer for Group in Setting bundle

橙三吉。 提交于 2019-12-21 07:28:14

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!