0
我有一個圖像視圖對象。我可以在按下按鈕時加載圖像,但我想知道是否有方法在應用程序啓動時加載它。NSImage在應用程序開始
使用的代碼IM是
NSURL *lURL = nil;
NSData *lData = nil;
NSImage *lImage = nil;
lData = [lURL resourceDataUsingCache:YES];
lImage = [[NSImage allocWithZone:[self zone]] initWithData:lData];
lURL = [[NSURL alloc] initWithString:@"urltoimage"];
[imageView setImage:lImage];
任何幫助理解