I have the need of scrolling a UITableView to a space which has no current UITableViewCells leaving only the last cell (with variable length) at the top, just like Siri does.
Currently I'm scrolling the UITableView with
[mainTableView setContentOffset:CGPointMake(0, mainTableView.frame.size.height-80) animated:YES];
however when I "reloadData" on the UITableView the scrolling jumps and I don't get the desired effect of smooth scrolling, just like Siri does.
Is there any easy way to achieve this scrolling need?