views:

296

answers:

1

I have implemented a UITableView, which shows up fine as a subview in my iPhoneApp. Now this is supposed to be something similar to a tele prompter, so I would like to autoscroll this thing up, till the last cell is there.

I was playing around with -scrollToRowVisible, but this did not seem to work. Can anyone give me a hint here or point me to some example?

+6  A: 

How about scrollToRowAtIndexPath:atScrollPosition:animated:?

Adam Woś
Hi Adam, thanks a lot... it worked like a charme! I definately need to lear to read more before I ask ;-)
Jondalar