I want to program an “Add”-Window to my application, much like the “Add Contact”-window in the Contacts app or the “Add City”-window in the Weather app.
My question is: how do I code the effect of sliding up that Contacts & Weather feature?
— Ry
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.
These are called “modal view controllers”.
You create a view controller for that “sheet”, and from any method of another view controller call
to slide up the sheet, and from any method of the sheet view controller call
to slide down. Search the term “Modal View Controllers” in the Xcode docs for detail.