Re: Multiple Nib Question
Re: Multiple Nib Question
- Subject: Re: Multiple Nib Question
- From: Jonathan Hess <email@hidden>
- Date: Wed, 28 Jan 2009 19:27:13 -0800
- (NSString *)appSupportFolder {
NSArray *paths = NSSearchPathForDirectoriesInDomains
(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:
0] : NSTemporaryDirectory();
return [basePath stringByAppendingPathComponent:@"TomTom POI
Manager"];
}
This method doesn't appear to use self or any of self's state. You
could make it a regular C function instead of a method of the app
delegate.
Jon Hess
_______________________________________________
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