Title footer for Group in Setting bundle

后端 未结 2 1098
梦如初夏
梦如初夏 2021-02-19 07:40

How can I leave a message under group type in Setting bundle ? something like this :\"enter

相关标签:
2条回答
  • 2021-02-19 08:19

    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>
    
    0 讨论(0)
  • 2021-02-19 08: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.

    0 讨论(0)
提交回复
热议问题