我在從某些圖像的url獲取圖像時出現錯誤,而對於其他圖像則沒有。來自URL的NSURL圖像iPhone
NSURL* imageURL = [[API sharedInstance] urlForImageWithName:[NSString stringWithFormat:@"%@", [photo objectForKey:@"src"]] andID:[NSString stringWithFormat:@"%@",self.IdPhoto]];
在API
- (NSURL *)urlForImageWithName:(NSString *)imageName andID:(NSString *)imageID
{
NSString* urlString = [NSString stringWithFormat:@"%@/%@upload/%@", kAPIHost, kAPIPath, imageName];
return [NSURL URLWithString:urlString];
}
SRC是在數據庫中的圖像的名稱,它適用於大多數的照片,甚至當我加載它們的tableView一切,但是當我按下圖像和想要全屏顯示它,一些圖像被加載,並且有一些拋出異常:線程1:EXC_BAD_ACCESS(代碼= 1,地址= 0x ...)。
幫助!!!!
哪一行是被訪問的訪問不良? – CodaFi 2013-04-23 19:03:32
我寫的第一個代碼,NSURL * imageURL .... – user1832330 2013-04-23 19:09:43
什麼是'照片'對象,它確實存在(它已被釋放)? – Wain 2013-04-23 19:54:50