I'm using the Paypal library in my iphone app. Its all working fine with my test account except for one little thing, orientation.
My app is in landscape and the screen generated by the PayPal lib is portrait, when I move back from the PayPal screen to my app the views are still all in landscape but the status bar moves to portrait, thus leaving a space where the bar usually sits and cutting off the left hand side of the view with the status bar.
I'm not doing anything strange code-wise just the normal orientation methods shown below. Any advice appreciated :)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation{
[[UIApplication sharedApplication] setStatusBarOrientation:UIDeviceOrientationLandscapeLeft animated:FALSE];
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}