The GiG
The GiG

Reputation: 2611

How to programaticly scroll down a UITable

Im implementing a bubble chat using a UITable, and I want the table to scroll down every time someone posts a message. Is it possible to make the table view to scroll down? How do i do that?

Upvotes: 2

Views: 678

Answers (1)

MCannon
MCannon

Reputation: 4041

You will probably want to call this method:

    [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:1] atScrollPosition:UITableViewScrollPositionTop animated:YES];

Upvotes: 5

Related Questions