How can I implement disabled application settings?

后端 未结 2 943
无人共我
无人共我 2020-12-21 18:29

How can I implement disabled application settings ? I saw this feature in Nike Running application. I searched a lot about this feature, but couldn\'t find a possible soluti

相关标签:
2条回答
  • 2020-12-21 19:11

    You could do this if you implemented your settings inside your App. A Static Cell TableViewController is all you need. Just keep track of the settings using NSUserDefaults (standard place to store these settings) and implement the View yourself. I personally like settings inside the application rather than being implemented as part of the OS's settings.

    0 讨论(0)
  • 2020-12-21 19:18

    You can't do that. Apple has made some special settings for things included in iOS, like the Nike +iPod setting.

    You can only use the Settings.bundle which is read by the settings app and then allows the user to change some settings.

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