Saeed
Saeed

Reputation: 926

Custom ipad table view design

I want to create an iPad application with look and feel like the following:

Style 2

enter image description here

Please advice,

Upvotes: 1

Views: 416

Answers (3)

Tarek Hallak
Tarek Hallak

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

Krunal
Krunal

Reputation: 6490

You can implement left menu using Grouped TableView. And table cell on right menu would be cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

Upvotes: 0

DrummerB
DrummerB

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

Related Questions