• 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
Strange retainCount from NSTimer
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Strange retainCount from NSTimer


  • Subject: Strange retainCount from NSTimer
  • From: Brian Greenstone <email@hidden>
  • Date: Thu, 13 Mar 2008 20:37:42 -0500

I'm hoping someone can shed some light on this for me. I'm getting some unusual retainCount values from the following code:

	NSTimer *theTimer;

	theTimer = [NSTimer scheduledTimerWithTimeInterval:1.0
							target:		self
							selector:	@selector(timerCallback)
							userInfo:	nil
							repeats:	YES];

	NSLog(@"A: retain count: %i", [theTimer retainCount]);

[[NSRunLoop currentRunLoop] addTimer: theTimer forMode: NSDefaultRunLoopMode];

	NSLog(@"B: retain count: %i", [theTimer retainCount]);


The output I get is:

	A: retain count: 2
	B: retain count: 2


But that shouldn't be, right? Shouldn't the retainCount of theTimer be 1 after scheduledTimerWithTimeInterval? Then shouldn't it be bumped up to 2 after adding the timer to the Run Loop? It appears that the retain count is starting at 2 which is wrong, and then not being incremented by addtimer which is wrong. In the end the count is still 2, so it is valid, but I'm confused why the counts are doing this.



Thanks,

-Brian




_______________________________________________

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: Strange retainCount from NSTimer
      • From: "Michael Ash" <email@hidden>
    • Re: Strange retainCount from NSTimer
      • From: Tom Bunch <email@hidden>
    • Re: Strange retainCount from NSTimer
      • From: Chris Suter <email@hidden>
    • Re: Strange retainCount from NSTimer
      • From: John Stiles <email@hidden>
  • Prev by Date: Re: QCView openGLContext
  • Next by Date: Re: Strange retainCount from NSTimer
  • Previous by thread: Re: get currently logging in users
  • Next by thread: Re: Strange retainCount from NSTimer
  • Index(es):
    • Date
    • Thread