Hello. I'm diving into iOS development and am building my own alarm app to become familiar with the SDK. My questions are...
- I've played around with UITableViews a bit, but I don't understand how I would implement the table at the top half of this form. If I had to guess, I would say it's a single UITableView, defined with one section and four rows, is that right?
- If so, to implement it, would I just "hardcode" the
cellForRowAtIndexPath
function to create each cell manually? - If not, is there an adopted approach to defining the layout and functionality of these types of settings pages?
- Row #3 has a switch in it, is this a predefined cell style or a custom cell style that I have to define myself?
- Rows #1, 2, and 4 take the user to new views when they're touched. Is this a predefined style and or do I just implement the standard
didSelectRowAtIndexPath
functionality to push a new view onto the stack?
Thanks so much in advance for your help! I'm going to continue researching these questions right now.