Hey,
I've been baffled by this for a few weeks now and I just can't figure out how to get the minimum/maximumValueImage to appear for a Settings.bundle PSSliderSpecifier.
I add a correctly sized png image to my MyProg/Images group, then put the filename into the minimum/maximumValueImage option of my Settings.bundle Root.plist file:
I can't understand where I can be going wrong - I've tried resetting the iPhone Simulator and that doesn't appear to make a difference... I also have the latest iPhone SDK.
If anyone can help me out I would appreciate it
Thanks for your time,
-Ross
I've been baffled by this for a few weeks now and I just can't figure out how to get the minimum/maximumValueImage to appear for a Settings.bundle PSSliderSpecifier.
I add a correctly sized png image to my MyProg/Images group, then put the filename into the minimum/maximumValueImage option of my Settings.bundle Root.plist file:
Code:
<dict>
<key>Type</key>
<string>PSSliderSpecifier</string>
<key>Key</key>
<string>my_preference</string>
<key>DefaultValue</key>
<integer>15</integer>
<key>MinimumValue</key>
<integer>1</integer>
<key>MaximumValue</key>
<integer>60</integer>
<key>MinimumValueImage</key>
<string>myMinimumImage.png</string>
<key>MaximumValueImage</key>
<string>myMaximumImage.png</string>
</dict>
I can't understand where I can be going wrong - I've tried resetting the iPhone Simulator and that doesn't appear to make a difference... I also have the latest iPhone SDK.
If anyone can help me out I would appreciate it
Thanks for your time,
-Ross