In the iOS app, I am using grouped UITableViews to handle my settings. What is likely to be the most sensible way to port this to mac?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Preferences in a Mac app are usually presented in a custom-designed Preferences window that can be opened from the menu bar (App Name -> Preferences) or with
Cmd-,. You can use Cocoa Bindings to the Shared User Defaults Controller to automatically bind controls to user defaults values without writing any code in many circumstances.