How do I show this in iPad application.

It looks like some kind of modal popup.
What is it called and how do I integrate it in my iPad app?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 themodalPresentationStyleproperty toUIModalPresentationFormSheet.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.)