Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Creating an NSTimer subclass



On 9 Nov 2006, at 15:38, leenoori wrote:

I want to add a couple of methods to NSTimer, but I can't use a category because I need to add a couple of instance variables as well.

It's far from ideal, but you can kinda-almost add instance variables in a category by storing them in a static NSDictionary, keyed by self.
eg :


static NSDictionary* fakeInstanceVars = nil;

@implementation NSTimer (ExtraStuff)

-(NSString*)magicalValue
{
NSDictionary* instanceVars = [fakeInstanceVars objectForKey: [NSNumber numberWithInt:self]];
return [instanceVars objectForKey:@"magicalValue"]
}


@end


Unpleasant, I know, but it's an option...


_______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/email@hidden

This email sent to email@hidden
References: 
 >Creating an NSTimer subclass (From: leenoori <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.