In storyboard, I have a TableViewController and a push segue to a DetailViewController. The TableVC is nested in a nav controller. I set the DetailViewController view to background color black in storyboard. The DetailVC also contains a webview which loads in its viewDidLoad. I pass the webview's URL to DetailVC in TableVC's prepareForSegue.
I'm getting some strange behavior when the push segue is performed when tapping the cell. Immediately after the segue is performed, DetailVC's view bg color is white for a brief moment (nav bar shows up fine). Then the view's bg color turns to black (it was set to black in storyboard). Then the webview loads. I'm not sure what is causing the delay for DetailVC's view bg color.
Here is my prepareForSegue method:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"Radio Show Playback"])
{
RadioShowPlaybackVC *radioShowPlaybackVC = segue.destinationViewController;
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
radioShowPlaybackVC.radioShowData = self.radioShows[indexPath.row];
}
}
Edit: It has something to do with the webview. When I remove the webview, the segue transitions as desired.
Edit: My current workaround is to hide the webview until it loads. When it hasn't loaded, the bg color displays white and cannot be modified.