views:

129

answers:

1

Hi everybody,

Can Anyone tell me how to slide textview in iphone in the same manner as we do with images. I am developing an application in which I want to side the TextView. I have 5 TextViews.

Can anyone help me with this.....

Thanx in advance...

+2  A: 

You'll want a UIScrollView with paging enabled. Since with paging the view "stops on multiples of the view bounds" (according to the docs), you'd just line up your five text fields side-by-side, and make them the width of the visible area (the screen) inside a container view that sized to contain all 5.

Joshua Nozzi