1

I have a UITabBar. In the first tab, I have a UINavigationController. Within that navigation controller, after a couple of UIVIewController are pushed onto the stack, there's a UIViewController in which the user can use their finger to sign.

I want this to be in Landscape mode. How can I force my the phone to turn into landscape? In that signature view controller, I implement supported orentiations function and return landscape right but still nothing happens.

Thanks.

Caleb
  • 124,013
  • 19
  • 183
  • 272
user635064
  • 6,219
  • 12
  • 54
  • 100

1 Answers1

1

Tab bar controllers support a portrait orientation by default and do not rotate to a landscape orientation unless all of the root view controllers support such an orientation.

So sayeth Tab Bar Controllers and View Orientation.

Caleb
  • 124,013
  • 19
  • 183
  • 272