following code working fine in ios 8 ,But in ios 9 i am getting white page with no content.
MRForceUpdateView * mForceUpdateView = [[[NSBundle mainBundle] loadNibNamed:@"MRForceUpdateView" owner:self options:nil] objectAtIndex:0];
mForceUpdateView.frame = self.view.frame;
UIWindow * window = [[[UIApplication sharedApplication] delegate] window];
[window addSubview:mForceUpdateView];
please suggest a method to add a custom view on app level .
thanks in advance .
Unchecking "Use Size Classes" option and then coming back and re-checking it again fixes this issue.