I am using SVPullToRefresh
__weak InventorySearch *safeSelf = self;
[self.tableView addPullToRefreshWithActionHandler:^{
[safeSelf refresh];
}];
The method refresh does some setup work then calls [self presentmodalviewcontroller:controller animated:YES];
However the view doesn’t animate and is simply presented immediatley.
Instead of
try this