Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad app designing

Tags:

ios

ipad

I need to create an app for ipad.Its something like the contacts app in ipad.(like an open book)enter image description here

My doubts are whether they are using split view or two different views.
If splitview is used,how could we increase its width and style?

like image 761
nithin Avatar asked Dec 13 '22 07:12

nithin


2 Answers

You can tell that they are not using a split view controller by turning the screen vertically: split view moves the master into a popover; contacts simply rotates, without popping the master portion out. I think that they use a single, highly customized, view for the contacts.

like image 80
Sergey Kalinichenko Avatar answered Dec 14 '22 23:12

Sergey Kalinichenko


The background can be just a chunk of graphic or a picture. On top of that you'd add your own or Apples UI elements.

Each functional area should probably be implemented as a separate subview, ie. the UITableView on the left, the index on the right and so forth.

In your words - implement it as separate views not a split view.

like image 39
Niels Castle Avatar answered Dec 14 '22 23:12

Niels Castle