I need to create an ipad app for restaurant so it acts like a menu,
To the left is a list of food and to the right is a column
So when customer order something, say food A,
A tab will be added to the right column, displaying food A on it
Just like that in iPhone’s clock app – Alarm section
Customer can delete unwanted order later in the column
I’m new to xcode, so I imagine what I’m suppose to use is UITableView
Can anyone give me some example on how to create those tabs?
Thank you very much in advance
Check out the Tabster iphone app sample code. That should help you get over the hump.
You need to use UITabBarController with array of UINavigationControllers depending on the complexity of your usecasse.
For the rows and sections, use UITableViewController. Just check any sample code of Apple on UITableViewController. They have plenty. Both simple and complex. Example: TableViewSuite