IPhone: Is there a ready made UISettingsView?

On startup, if the user hasn't done any NSUserDefaults settings, I want my main view to display a reverse rendering that displays the same stuff as in the Settings app.

Is there an API to instantiate the same controller that Settings uses, or will I have to implement the table and controller view myself?

+2


source to share


3 answers


This website contains the MySettings API, which is a handy toolkit that encapsulates various settings functionality (radio buttons, selections, etc.), all in a declarative (plist-based) API.



+3


source


You have to code the ui elements yourself if you want the data to be available in your application. The utility template in xcode gives you a starting point when creating a flip chart.



0


source


Check out Craig Hockenberry Generic Table Views , which allow you to easily customize your table view in the form of settings.

0


source







All Articles