Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using KTPhotoBrowser. Can any one tell me why when I use the TabBarSample of this code in my project, I am not able to make the photos work for landscape? The photos always display in portrait mode as my project only runs in portrait. How do I solve this issue? I have added the following

-(BOOL)shouldAutorotate { 
    return YES; 
}

in SDWebImageRootViewController.m but still no luck.

Please can anyone download this and see why the TabBarSample(project) not working for the landscape ?

enter image description here enter image description here

share|improve this question
@iO Adding XCode as a tag tells people that this question is related to XCode, the IDE used for iOS development, which is clearly not the case. – dandan78 Jan 31 at 13:21
Check all viewController's in the TabBarController supports orientation – Anil Jan 31 at 13:24
i am working with ios6 so i added -(BOOL)shouldAutorotate { return YES; } in the all viewcontroller's but still no luck .. – iOSBee Jan 31 at 13:36

3 Answers

up vote 4 down vote accepted

I highly recommend Ryan's answer for anyone else who read this.

But in this particular case, what happened was the UITabBarController is not being set as the root view controller in the app window. I can only guess that this worked differently before iOS 6 (that Github project is 3 years old). Therefore you got this message in the log:

Application windows are expected to have a root view controller at the end of application launch

To solve this, change this line in your app delegate:

[window addSubview:tabBarController.view];

To this:

[self.window setRootViewController:tabBarController];

And then as Anill said, we need to make sure all of the view controllers in the tab bar agree to rotate.

share|improve this answer
1  
Good find. +1 :) – Ryan Poolos Jan 31 at 14:14
yes .. really worked .... thank you very much dude will remember it now .. :) – iOSBee Jan 31 at 14:21
Hmmm.......:):) – Anil Jan 31 at 14:34

You need two lines for iOS6 rotation. You say yes I want your to auto rotate, and here are the supported orientations. Add these to all your viewControllers.

// iOS5 Rotation
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
}

// iOS6 Rotation
- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAll;
}

- (BOOL)shouldAutorotate
{
    return YES;
}

You may also need to go into your Project Settings and make sure your plist supports landscape orientations too.

share|improve this answer
still not working .. – iOSBee Jan 31 at 13:46
Its not a secret art. If every view in your app has this it WILL rotate. There is another view somewhere without it. Since you're using a third party library I'd be willing to be its inside it. Are you sure ktphotobrowser supports landscape itself? – Ryan Poolos Jan 31 at 13:59
sorry but i am not sure of that .. and if it does not supports how do i make it support as also i can't see the NSLog message that i put in the BOOl method on the console ... ? – iOSBee Jan 31 at 14:01
Go check our Enrico's answer. He has found a bug in the sample code. – Ryan Poolos Jan 31 at 14:13
KTPhotoBrowser supports lanscape :) – Anil Jan 31 at 14:20

Solved Add following code to

SDWebImageRootViewController.m  
LocalImageRootViewController.m  
FlickrRootViewController.m


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
return YES;
}
share|improve this answer
Its works in iOS 5 – Anil Jan 31 at 13:38
nothing working dude .. i tried all – iOSBee Jan 31 at 13:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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