Reputation: 926
I want to create an iPad application with look and feel like the following:
Please advice,
Upvotes: 1
Views: 416
Reputation: 18470
Use this for left table here, subclass UISplitView or just set background color as image, the right table is just a UItableView located in adjusted UIViewController frame.
Upvotes: 1
Reputation: 6490
You can implement left menu using Grouped TableView
. And table cell on right menu would be cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
Upvotes: 0
Reputation: 40211
You certainly won't be able to do that "without subclassing any class". I'm guessing, the app on the screenshots used a split view, a custom table view controller subclass with custom table cells on the left and a more complicated view controller subclass, also with a table view with a custom cell class. And the rest is just a lot of tweaking pixels and background images and gradients.
Upvotes: 1