Re: observing dealloc [Solved]
Re: observing dealloc [Solved]
- Subject: Re: observing dealloc [Solved]
- From: Ken Tozier <email@hidden>
- Date: Tue, 29 May 2007 13:27:22 -0400
Thanks all
I ended up ditching the whole thing in favor of
static NSMutableDictionary gGlobals = nil;
@implementation KWrappingMatrix
+ (void) initialize
{
gGlobals = [[NSMutableDictionary alloc] init];
[gGlobals setObjectForKey: @"bla bla bla" forKey:@"bobo"];
}
Which does basically the same thing. May not be perfect but it does
what I want.
Oh the perils of programming when you're exhausted and being "too
clever by half..."
- Ken
_______________________________________________
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