• 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
Newbie question: How do I keep animations going NSProgressIndicator...
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Newbie question: How do I keep animations going NSProgressIndicator...


  • Subject: Newbie question: How do I keep animations going NSProgressIndicator...
  • From: Berndt Jung <email@hidden>
  • Date: Thu, 30 Sep 2004 15:26:29 -0700

Below is a snippit of code.  I want he progress indicator to keep
"spinning" while it sorts the list.  As is, it stops as soon as it
hits the [dll ****sort] method call.

- (IBAction)sort:(id)sender
{
	[sortingIndicator startAnimation:self];
	[sortingIndicator displayIfNeeded];
	NSDate * now = [NSDate date];
	switch ([whichSort selectedTag]) {
		case 0:
			[dll selectionSort];
			break;
		case 1: [dll insertionSort];
			break;
		case 2: [dll mergeSort];
			break;
		default: [dll quickSort];
			break;
	}
	float secs = -1.0 * (float)[now timeIntervalSinceNow];

	[elapsedTime setFloatValue: secs];
	[sortingIndicator stopAnimation:self];
	//[dll printList];
}

Thanks.
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Newbie question: How do I keep animations going NSProgressIndicator...
      • From: Brian Christensen <email@hidden>
  • Prev by Date: Re: Cocoa Application Architecture - Think More About AppleEvents and OSA?
  • Next by Date: Re: linking to private frameworks [solved]
  • Previous by thread: Fwd: Xcode and Java <problems, question>
  • Next by thread: Re: Newbie question: How do I keep animations going NSProgressIndicator...
  • Index(es):
    • Date
    • Thread