My iPad app makes heavy use of autorotation. This is great. However, I've noticed that if a hidden view is released by the default implementation of didReceiveMemoryWarning (as described here), when the view is re-loaded from the nib and I happen to be in landscape, it loads it in portrait. This wreaks havoc with the interface until I rotate the iPad manually and force it to go to the proper orientation.

I had assumed that iOS would load the view in the current orientation; that's what it does when the app launches. But it no, not after being unloaded by didReceiveMemoryWarning. Why not? And how can I get it to do that?

link|improve this question

Is the view outside of the view hierarchy (not a subview of the UIViewController view)? – dstnbrkr Jan 11 '11 at 18:28
@dbarker - Nope, in fact it's the main view of the app. – Theory Jan 11 '11 at 20:07
@dbarker Ah, but looking more carefully, I see that it's subviews of that view that are not properly rotated. Subviews included in the nib are properly rotated. Sort of. Hrm. Something might be up with my -willAnimateRotationToInterfaceOrientation:duration: method. Maybe it's not getting called because the rotation isn't animated? – Theory Jan 11 '11 at 20:12
Yes, neither -willRotateToInterfaceOrientation:duration: nor -willAnimateRotationToInterfaceOrientation:duration: gets called. They're both called on app launch… – Theory Jan 11 '11 at 20:14
Sounds right - the rotation callbacks won't get called when the view (re) loads. For the views that aren't managed by a nib, you'll need to adjust them manually to the orientation that UIViewController#interfaceOrientation returns. Not sure, but possible that this is what the nib does behind the scenes. – dstnbrkr Jan 11 '11 at 20:39
show 3 more comments
feedback

2 Answers

up vote 4 down vote accepted

The answer, determined thanks to pointers from dbarker, is that the view controller's rotation methods, including -willRotateToInterfaceOrientation:duration: and -willAnimateRotationToInterfaceOrientation:duration:, will not be called when a view is reloaded after a the default implementation of didReceiveMemoryWarning has unloaded the view. I've no idea why it would be different on app launch, but I do have a workaround

What I did was to set a boolean ivar, named unloadedByMemoryWarning, to YES in didReceiveMemoryWarning, like so:

- (void) didReceiveMemoryWarning {
    unloadedByMemoryWarning = YES;
    [super didReceiveMemoryWarning];
}

Then, in viewDidLoad, if that flag is true, I set it to NO and then call the rotation methods myself:

if (unloadedByMemoryWarning) {
    unloadedByMemoryWarning = NO;
    [self willRotateToInterfaceOrientation:self.interfaceOrientation duration:0];
    [self willAnimateRotationToInterfaceOrientation:self.interfaceOrientation duration:0];
    [self didRotateFromInterfaceOrientation:self.interfaceOrientation];
}

Kinda sucks that I have to do this, but it does work, and now I'm less concerned about getting killed by iOS for using too much memory.

link|improve this answer
I am facing the same issue in my iPad app. This is kind of weird behavior but your solution helped me. – sandy May 9 '11 at 11:36
Tried that solution but it's not doing it on my end unfortunately. Bleh... digs on – Kalle Jan 4 at 9:04
feedback
  1. I think iOS 5 might fix this.

  2. For iOS 4.3, I've had good luck with another fix. After the load from nib:

    [parent.view addSubview:nibView];  
    nibView.frame = parent.view.frame;  
    [nibView setNeedsLayout];  
    

    If that worked, you could jettison the unloadedByMemoryWarning logic, since it's safe to do every load. Got the tip & code (basically) from here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.