I’m doing an app and I was wondering how can you show a view like this:

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.
That would be called a sheet. This guide should walk you through how to do them.
You basically make a
NSWindowthat you would like to use as a sheet, then, when you want to show it, call:myCustomSheetis obviously your sheet andwindowis the window you want it to appear in. Setselfas the delegate and implementdidEndSheet:returnCode:contextInfo::Hook up a “close” button on your sheet to an
IBActionthat closes the sheet.These sheets don’t even need to be folded! XD