Skip to content

Instantly share code, notes, and snippets.

@atg
atg / gist:96466
Created April 16, 2009 15:16 — forked from derekr/gist:96464
- (NSImage *)image
{
NSString *path = [[NSBundle bundleForClass:[self class]] pathForResource:@"document__plus" ofType:@"png"];
NSImage *image = [[NSImage alloc] initWithContentsOfFile:path];
NSLog(@"image %@", image);
return [image autorelease];
}