我在導航控制器中遇到了我的UITableView問題。 當我將數據添加到表格中時,我使用另一個類來下載圖像以顯示在該表格中,而所有這些功能都很棒,但如果在下載圖像的過程中,我會回到導航控制器應用程序中的先前視圖崩潰。如何檢查視圖是否有效iphone
這是我的代碼解釋進一步
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
// Set appIcon and clear temporary data/image
UIImage *image = [[UIImage alloc] initWithData:self.activeDownload];
UIImage *appIcon;
if (image.size.width != kAppIconHeight && image.size.height != kAppIconHeight)
{
CGSize itemSize = CGSizeMake(125, 85);
UIGraphicsBeginImageContext(itemSize);
CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
[image drawInRect:imageRect];
appIcon = UIGraphicsGetImageFromCurrentImageContext();
///UIGraphicsEndImageContext();
}
else
{
appIcon = image;
//self.appRecord.appIcon = image;
}
self.activeDownload = nil;
// Release the connection now that it's finished
self.imageConnection = nil;
// call our delegate and tell it that our icon is ready for display
if(delegate != nil)
[delegate appImageDidLoad:self.indexPathInTableView imaged:appIcon ];
[image release];
}
的appImageDidLoad是存在於我的UITableView視圖的方法。
有沒有一種方法可以檢查UITableView是否在我的imagedownload類中有效,所以我不知道發送圖像。
在此先感謝。
崩潰發生在哪裏? – 2010-03-07 08:08:33