Reputation: 2705
I have found this code that shows me how to insert some values for the iOS settings page on "system preferences".
The thing is that I want it only to insert the app version and some copyright text.
I have this Setting.bundle with the Root.plist insite it.
the plist have the "iPhone Settings Schema" dictionary just like the example and its working fine. But I am not able to set the copyright as the section footer like this image:
http://cl.ly/image/0v3b0O0Q0S2A
EDIT: I have managed to set the readonly property for version, I was missing the "Default Value" key, since it does not add it for default.
But I still need to manage how to set the copyright string
Upvotes: 2
Views: 1357
Reputation: 7720
title is what you are looking for. From the Apple Documentation on Preferences and Settings:
The title type displays a read-only string value. You can use this type to display read-only preference values.
The copyright text is a FooterText
in a PSGroupSpecifier
. Have a look at Group Element in the Settings Application Schema Reference
Upvotes: 5