meetpd
meetpd

Reputation: 9219

How to display this in iPad App?

How do I show this in iPad application.

enter image description here

It looks like some kind of modal popup.

What is it called and how do I integrate it in my iPad app?

Upvotes: 2

Views: 233

Answers (1)

John Parker
John Parker

Reputation: 54445

This is just a standard view controller that has been presented modally via the presentModalViewController:animated: method of the "parent" view controller. To achieve the exact effect as show in the picture, simply set the modalPresentationStyle property to UIModalPresentationFormSheet.

If you read the Modal View Controllers section of View Controller Programming Guide for iOS all will be revealed. (It also includes detailed sample code if this is what you require.)

Upvotes: 3

Related Questions