This question has been asked before, but I haven't found an answer to my problem. All it is, is a simple table with cells that when clicked on push a view controller on the nav stack:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
DetailViewController *dvc = [[DetailViewController alloc] init];
[self.navigationController pushViewController:dvc animated:YES];
}
Done it many times with no issue, yet this time, it stops for a second midway and also has a weird grey color come and go. I have checked and there is no color set for the background and also the new VC doesn't have any code in it yet so loading too much code not an issue. I have looked and some people have had the same issue, one even posted a Gif of the problem:
UINavigationController pushViewController pauses/freezes midway through
Is this an Apple bug?
Thanks