I want to build object and then open a controller with it. Building can take up to 5 seconds and I want to show a message while it processing.
I have the following implementation of didSelectRowAtIndexPath:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
messageView.hidden = NO;
// Some methods
Controller *ctrl = [Controller new];
[self.navigationController pushViewController:ctrl animated:YES];
}
Everything is good but there is a problem: messageView appears ONLY when push animation starts. What can I do to fix that?