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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:56:22+00:00 2026-05-30T13:56:22+00:00

Now I’m using this code, with a little modification: if (self._photoPath && !self._photo) {

  • 0

Now I’m using this code, with a little modification:

if (self._photoPath && !self._photo) {
        dispatch_queue_t bg_thread = dispatch_queue_create("com.yourcompany.bg_thread", NULL);
        dispatch_queue_t main_queue = dispatch_get_main_queue();
        dispatch_async(bg_thread,^{
            NSData *data = [NSData dataWithContentsOfFile:self._photoPath];
            if(data != nil) {
                dispatch_async(main_queue,^{ 
                    self._photo = [UIImage imageWithData:data];
                    [self.photoButton setImage:[UIImage imageNamed:@"photoButton.png"] forState:UIControlStateNormal];
                });
            }
        });

    }

As you can see, in fact after I get that photo I want set it immediately to my “photoButton”,
but now, UI got smoothed, but my photoButton’s appearance is always black…

What should I do next?

_______________________Updated___________________

I have 2 viewControllers, A and B.
A is the root viewController, and B is A’s child viewController.
In B, there is a button for calling the camera to take a photo.

After user took a photo, the photo’s appearance becomes that photo.

When I push a new B (with no photo) from A,
things goes smoothly.
But when there is an old B with a photo in it,
the animation gets a little stuck, caused by the following code I guess:

- (void)viewWillAppear:(BOOL) animated {
    if (self._photoPath && !self._photo) {
            NSData *data = [NSData dataWithContentsOfFile:self._photoPath];
            if(data != nil)
                self._photo = [UIImage imageWithData:data];
    }
    [super viewWillApear];
}

But I do need to get that photo before the view is displayed since I need to set that photo to my photoButton’s background.

So, is there a way to avoid sticking the view’s animation? Because it really result in bad user experience.

  • 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-30T13:56:23+00:00Added an answer on May 30, 2026 at 1:56 pm

    Try fetching the photo in a backgroudn thread (I’m using GCD here):

    - (void)viewWillAppear:(BOOL) animated {
        if (self._photoPath && !self._photo) {
          dispatch_queue_t bg_thread = dispatch_queue_create("com.yourcompany.bg_thread", NULL);
          dispatch_queue_t main_queue = dispatch_get_main_queue();
          dispatch_async(bg_thread,^{
              NSData *data = [NSData dataWithContentsOfFile:self._photoPath];
              if(data != nil) {
                dispatch_async(main_queue,^{ self._photo = [UIImage imageWithData:data]; });
              }
          });
        }
        [super viewWillApear];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
Now I have learnt a little bit of assembler (using NASM) I want to
Now I use ShakeListener follow this site . It works but a little more
Now this isn't a question as to which of the technologies is better, since
Now I'm sure this is super easy, I have a function called remove_deposit which
Now that http://github.com/why/hpricot/wikis/home no longer exists.
Now I'll little explain my purpose: I have the following selection SELECT id, way_id,
Now this might sound simple, but I'm a bit mixed up. I am trying
Now that my facebook app has got more than 1000 likes -- https://apps.facebook.com/156485447732146/ But
this is what i have right now Drawing an RSS feed into the php,

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.