Designing iPad Applications

I need to create an application for ipad.Its something like a contact application in ipad. (e.g. open book) enter image description here

My doubts are whether they use a split or two different kinds. If splitview is used, how can we increase its width and style?

+4
source share
3 answers

A background can simply be a fragment of an image or picture. In addition, you would add your own Apple interface elements.

Each functional area should probably be implemented as a separate subtask, i.e. UITableView on the left, index on the right, etc.

In your words - realize it as a separate view, not a split view.

+3
source

You can say that they do not use a controller with a split image, turning the screen vertically: the bifurcated view moves the wizard in a popover; the contacts simply rotate without removing the main part. I think they use one, very customized view for contacts.

+7
source

If you need something like this (I don’t know why you ... the Contacts application is awful), then you will be watching the set of interface elements set by Apple by default.

UIViewController, UITableView are the only two things you would reuse for something like that.

+3
source

Source: https://habr.com/ru/post/1386502/


All Articles