Skip to content

Instantly share code, notes, and snippets.

@derekr
Created April 16, 2009 15:15
Show Gist options
  • Save derekr/96464 to your computer and use it in GitHub Desktop.
Save derekr/96464 to your computer and use it in GitHub Desktop.
- (NSImage *)image
{
NSString *path = [[NSBundle bundleForClass:[self class]] pathForResource:@"document__plus" ofType:@"png"];
NSImage *image = [[NSImage alloc] initWithContentsOfFile:path];
NSLog(@"image %@", image);
[image autorelease];
return image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment