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 9284681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T18:57:57+00:00 2026-06-18T18:57:57+00:00

In my app I need to show a UIImagePickerController when a button is tapped.

  • 0

In my app I need to show a UIImagePickerController when a button is tapped. Here is the code I used in the method called by the button on the controller when it gets pressed:

- (IBAction)choosePressed:(id)sender {
    if (!self.pickerController) self.pickerController = [[UIImagePickerController alloc]init];
        self.pickerController.delegate = self;
        self.pickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        [self.navigationController presentViewController:self.pickerController animated:YES completion:nil];
}

Problem is that UIImagePickerControllers are very slow to load, so I thought that moving the initialization of the picker in the viewDidAppear:animated method, possibly in another thread, would have been a good way to fasten the process of creation/showing of the picker so I did this:

-(void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    dispatch_queue_t myQueue = dispatch_queue_create("Picker Queue", NULL);
    dispatch_async(myQueue, ^{
    self.pickerController = [[UIImagePickerController alloc]init];
    self.pickerController.delegate = self;
    });
}

- (IBAction)choosePressed:(id)sender {
    self.pickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    [self.navigationController presentViewController:self.pickerController animated:YES completion:nil];
}

With this the pickerController shows up immediately when the button is pressed but when the main controller is loaded the UI freezes for a little bit (probably because of the initializzation of the pickerController) but the init should be done in another thread since I used the dispatch_async mechanism shouldn’t it? Is there any mistake in my code?

I’m very new to GCD so I must be missing something!

  • 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-06-18T18:57:58+00:00Added an answer on June 18, 2026 at 6:57 pm

    It’s a misuse of UIKit to access it from a background thread. You could perhaps show a “loading…” screen briefly. I think the best policy is to not worry about it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need show PIN Code activity after that (we have App with many Activities):
How can I show invoice id in \app\code\local\Mage\Sales\Model\Order\Pdf\Abstract.php I don't need to show getRealOrderId()
my app need to show user scrollable menu bar under tab bar like fox
In my app I have need to trigger show some custom view when status
I am developing an app in Cocoa. I need to show a progress at
I need my app to show as full screen. Now I know how to
I need to get google search results to show in my android app. How
On an app that I'm working on, I need a context menu to show
There is a moment in my app, that I need to force to show
In my app i need to show dialogs for a lot of buttons. Therefore

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.