I have a MBProgressHUD that is shown in the detailViewController of the UISplitViewApplication. It initially worked just fine when you start in either orientation. But once I change the orientation from landscape to portrait or vice versa, the view gets very messy. The code I did was:
HUD = [[MBProgressHUD alloc] initWithView:self.view];
[self.view addSubview:HUD];
This is defined in the viewDidLoad.
Has anyone successfully get around with this orientation issue?
I was able to resolve this by release-allocating the HUD when an orientation change. My issue is that the layout of the HUD in a split view controller is not correct. The black background and the indicator is separated when you switch views. So this is how I solve it.