1

I tried to sub class the UIImagePickerController and return YES from shouldAutorotateToInterfaceOrientation But this didn't work

BenMorel
  • 34,448
  • 50
  • 182
  • 322
user1130254
  • 155
  • 2
  • 9

1 Answers1

5

According to documentation

Important: The UIImagePickerController class supports portrait mode only. This class is intended to be used as-is and does not support subclassing.

So I don't think your approach is going to work.

Bala R
  • 107,317
  • 23
  • 199
  • 210
  • so how does the iphone camera roll work ? is there a camera roll controller ? – user1130254 Apr 24 '11 at 16:07
  • Check this answer to a [very similar question](http://stackoverflow.com/questions/1974858/uiimagepickercontroller-overlay-autorotate/1993979#1993979). – Bala R Apr 24 '11 at 16:09