• 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: Preventing beach balls
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Preventing beach balls


  • Subject: Re: Preventing beach balls
  • From: Shawn Erickson <email@hidden>
  • Date: Mon, 19 Feb 2007 12:38:43 -0800


On Feb 19, 2007, at 10:43 AM, Paul Borokhov wrote:

Hmm...how exactly would I go about doing this? Currently I have
...
timer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:delay] interval:[[NSUserDefaults standardUserDefaults] integerForKey:@"updateTime"] target:self selector:@selector(foo:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];
...
and then
- (void) foo:(NSTimer *)aTimer {
...
[self bar];
... }
If "bar" takes too long, the interface freezes. What am I missing?

A given thread can only do one thing at a time. In this case the main thread is busy in "bar". You either have to make "bar" take less time (do less work in a single shot) for this method to work or roll it off into another thread.


-Shawn
_______________________________________________

Cocoa-dev mailing list (email@hidden)

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


References: 
 >Preventing beach balls (From: Paul Borokhov <email@hidden>)
 >Re: Preventing beach balls (From: Martin Wennerberg <email@hidden>)
 >Re: Preventing beach balls (From: Paul Borokhov <email@hidden>)

  • Prev by Date: Re: Custom Shadow on an NSWindow
  • Next by Date: Re: Preventing beach balls
  • Previous by thread: Re: Preventing beach balls
  • Next by thread: Re: Preventing beach balls
  • Index(es):
    • Date
    • Thread