How do I get Interface builder to save images on the screen, and add the ability to scroll?
Share
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.
What do you mean by “save images on the screen”? If you want to display an image in a view, you can simply drag a
UIImageViewonto the view in Interface Builder and set the image to whatever image you want (see Graphics and Drawing for more information).As for scrolling, if you’re using standard controls like
UITableVieworUITextView, these already have scrolling built-in, so you don’t need to worry about adding scrolling capabilities. If you’re doing something custom, then you probably want to look intoUIScrollView.