One Quickie


Finding my resources (Screen Savers->General)
To find resources (say an image) from within the screensaver, use NSBundle bundleForClass. So, to get atomsymbol.jpg you would do something like
       NSBundle *bundle;
       NSString *path;

       bundle = [NSBundle bundleForClass: [self class]];
       path = [bundle pathForResource: @"atomsymbol"  ofType: @"jpg"];
       image = [[NSImage alloc] initWithContentsOfFile: path];



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com