• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Showing activity indicator during data download
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Showing activity indicator during data download


  • Subject: Re: Showing activity indicator during data download
  • From: Alastair Houghton <email@hidden>
  • Date: Thu, 29 Oct 2009 14:05:23 +0000

On 29 Oct 2009, at 08:36, DKJ wrote:

I replaced the line:

  [downloadIndicator startAnimating];

with this:

NSInvocationOperation *theOp = [[[NSInvocationOperation alloc] initWithTarget:downloadIndicator
selector:@selector(startAnimating) object:nil] autorelease];
NSOperationQueue *theQ = [[[NSOperationQueue alloc] init] autorelease];
[theQ addOperation:theOp];


and now it works just the way I want it to.

But am I taking a sledgehammer to a fly? Or have I found (quite by accident) the best way to do it?

Unless the documentation says specifically that NSProgressIndicator is thread-safe, the code above is a no-no.


You need to rewrite your code so that the download is asynchronous. It's either that or periodic calls to a nested event loop, which is (a) really ugly and (b) error-prone.

Kind regards,

Alastair.

--
http://alastairs-place.net



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: Showing activity indicator during data download
      • From: DKJ <email@hidden>
References: 
 >Showing activity indicator during data download (From: DKJ <email@hidden>)
 >Re: Showing activity indicator during data download (From: DKJ <email@hidden>)

  • Prev by Date: Re: Seemingly Documentation confusion?
  • Next by Date: Runloop hangs/stops when clicking programmatically on GUI
  • Previous by thread: Re: Showing activity indicator during data download
  • Next by thread: Re: Showing activity indicator during data download
  • Index(es):
    • Date
    • Thread