MrDatabase
MrDatabase

Reputation: 44505

How do I make a UIView "scrollable" in my iPhone app?

I have a UIView that will eventually contain about 2 screens worth of information. I want to give the user the ability to scroll down via flicking (just standard flicking like in Safari).
How do I do this?

Upvotes: 3

Views: 2695

Answers (1)

Darron
Darron

Reputation: 21620

Place your UIView inside a UIScrollView. Apple has some good example code for this on their developer pages.

Upvotes: 11

Related Questions