7 comments on “UITabBarController and UIActionSheet – 65% less hit point!

  1. I have come across weird animation behaviour when using this method (dropping down from the top), so have found this approach to work better.

  2. This is a good solution but not perfect. If you need to use device rotation you will have issues with action screen.
    In UIDeviceOrientationPortraitUpsideDown state action view will be shown upside down.

  3. [actionsheet showInView:self.tabBarController.view];

    this is how I use it in my apps, no problems.

  4. Nik’s answer saved the day. I noticed the upsidedown issue and was looking for another way to display the actionsheet correctly.

    [actionsheet showInView:self.tabBarController.view] did the tricky

    actually:

    myActionSheet.ShowInView(this.TabBarController.View);

    since i’m using monotouch, but you get the point :)

    thanks

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>