views:

126

answers:

2

I would like to scroll my UITableView 2 cells down when clicking on a button. The total height for the shift downwards is 100px. How can I accomplish this?

+1  A: 

Set the contentOffset property.

[aTableview setContentOffset:CGPointMake(0,100)];
Tom Irving