I want to add a view to my application that allows the user to change several (many) settings. It should look like the built in “Settings Application” (see here) but it has to be within my app itself. At the moment I just have a tableview and I manually add different cell objects (corresponding to switches, sliders, etc). Is there a smarter of doing that? I have the feeling that I’m reinventing the wheel.
Share
No, that’s the way, returning individual cells in the
tableView:cellForRowAtIndexPath:method. Just remember that aUITableViewCellhas useful properties such an accessory mark (a detail discolsure button, a disclosure indicator or a checkmark) and an image at the left side.