Iphone 设置包中组的标题页脚

Iphone 设置包中组的标题页脚,iphone,ios,xcode,settings.bundle,Iphone,Ios,Xcode,Settings.bundle,如何在设置包中的“组类型”下留言?类似这样的内容:这里有文档记录: 您需要在PSGroupSpecifier块中使用FooterText键。在PSGroupSpecifier中使用FooterText键,如下所示: <dict> <key>Type</key> <string>PSGroupSpecifier</string> <key>Title</key> <strin

如何在设置包中的“组类型”下留言?类似这样的内容:

这里有文档记录:


您需要在
PSGroupSpecifier
块中使用
FooterText
键。

PSGroupSpecifier
中使用
FooterText
键,如下所示:

<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>

类型
PSGroupSpecifier
标题
我的应用程序设置
页脚文本
我的自定义页脚文本。

我们可以通过编程方式添加此选项吗?