Loading image
Loading image
- Subject: Loading image
- From: Youngjin Kim <email@hidden>
- Date: Wed, 30 May 2001 22:51:41 +0900
Both expression work fine. Is there difference between two?
image = [[NSImage allocWithZone:[self zone]] initByReferencingFile:path];
image = [[NSImage alloc] initWithContentsOfFile:path];
Youngjin