我無法從文檔目錄打開jpg文件。文件存在,而不是零,但當我試圖打開它到UIImageView - 沒有任何反應。有誰能夠幫助我?在Obj-C中打開jpg文件
示例代碼:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filename = [documentsDirectory stringByAppendingString:address];
UIImage *img =[[UIImage alloc] initWithContentsOfFile: filename];
[imgView setImage:img];
UPDATE 此代碼的PNG文件完美的作品。
日誌文件路徑和驗證它確實存在。 –
在視圖層次結構中是「imgView」還是隱藏?只是猜測。 – lupz
imgView - 在視圖層次結構中的UIImageView – STBY