I read a lot about that. People say it will not autorotate whene its parent is not set to auto rotate. I tried everything but no luck. I created view-based app (v4.2) with a button that executes this:

    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel Button" destructiveButtonTitle:@"Destructive Button" otherButtonTitles:@"Other Button 1", nil];
    actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque;
    [actionSheet showInView:self.view];

The root controller is set to auto-rotate. The actionSheet does not. Note that when I rotate the simulator none of the root controller's orientation methods are called. Is there a problem with the delegate? What is wrong?

Thx 100x.

link|improve this question

61% accept rate
Try using showInTabbar or showFromBarButtonItem. showInView is a little bit stupid sometimes. – Aurum Aquila Feb 1 '11 at 6:10
Nope... the same, not rotating. – xpepermint Feb 1 '11 at 10:17
Did you find a solution to this problem. I am facing the same issue. – Ramya Jul 6 '11 at 8:05
Nope... not yet. – xpepermint Jul 6 '11 at 15:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.