Storyboard:

Simulator before segue with view (which is connected to a tab bar controller) showing correct background:

A tap on any of the icons causes a push segue but the background is white, when it should be blue:

I'm using AQGridview and the code for the segue is:
-(void)gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index
{
[self performSegueWithIdentifier:@"mySegue" sender:self];
}
Can anyone tell me what I'm missing?
