Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6125039
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:12:07+00:00 2026-05-23T16:12:07+00:00

Sams **Teach Yourself iPad Application development in 24 hour’s says I can display an

  • 0

Sams **Teach Yourself iPad Application development in 24 hour’s says I can “display an action sheet in a “nonanimated” fashion, filling a full popover view when it first appears…To do this, you need to show the action sheet with the method

showFromRect:inView:animated

with the “rect” set to the dimensions of the popover, the view set to the popover view controller’s view, and “animated” set to false. The display of the action sheet would need to take place when the popover view is first loaded such as in the viewDidLoad method of the popover view controller.

OK, easy.. here’s my code in my popover’s viewDidLoad method:

- (void)viewDidLoad {

self.contentSizeForViewInPopover=CGSizeMake(400.0,400.0);


    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Available Actions" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Destroy" otherButtonTitles:@"Negotiate", @"Compromise", nil];

    [actionSheet showFromRect:[self.view bounds] inView:self.view  animated:NO];

    [actionSheet release];

    [super viewDidLoad];
}

But this fails every time at the inView:self.view parameter with the exception:

Invalid parameter not satisfying view != nil

Any ideas?

Note, if I put this exact same code in an IBAction method and trigger it from a button in the popover, it works without a hitch!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T16:12:07+00:00Added an answer on May 23, 2026 at 4:12 pm

    One solution is to call the UIActionSheet in viewWillAppear or viewDidAppear: For example:

    - (void)viewWillAppear:(BOOL)animated {
        [super viewWillAppear:animated];
    
        [self showActionSheet];
    }
    
    - (void)showActionSheet {
        UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Available Actions" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Destroy" otherButtonTitles:@"Negotiate", @"Compromise", nil];
    
        [actionSheet showFromRect:[self.view bounds] inView:self.view  animated:NO];
    
        [actionSheet release];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just bought the book: Sams Teach Yourself iPhone Application Development in 24 Hours.
I'm following this book, Teach Yourself Android Application Development in 24 Hours, 2nd Edition
I'm currently working my way through the book Teach Yourself Android Application Development in
i am following along(mostly, im playing around with different functionality) with sams teach yourself
I have a table based off Sam's Teach Yourself iOS Development's FlowerViewController , that,
I am going through the Sams book Teach Yourself WPF in 24 Hours. At
I am learning this via Sams Teach Yourself Android in 24 hours. This is
I am very new to iPhone dev and while going through Sams Teach Yourself
I am trying to learn C++, and I am working through Sams Teach Yourself
I got this piece of code from a book viz. sams teach yourself android

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.