我有一個桌面視圖和單元格中的圖像的問題。 爲了用下面的代碼加載我用AFNetworking圖像:UITableView afnetworking圖像交換位置
[celle.thumb setImageWithURLRequest:[NSURLRequest requestWithURL:MYIMGLINK]
placeholderImage:[UIImage imageNamed:@"Placeholder.png"]
success:^(NSURLRequest *request , NSHTTPURLResponse *response , UIImage *image){
if (request) {
//Fade animation
[UIView transitionWithView:celle.thumb
duration:0.8f
options:UIViewAnimationOptionTransitionCrossDissolve
animations:^{
[celle.thumb setImage:image];
} completion:NULL];
}
}
failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error){
}
];
此代碼按預期方式工作和實現代碼如下現在看起來像this
但是現在,當我向下滾動,並再次 - 所有圖像混合。他們互換地點或我真的不知道。我不知道如何解決這個問題。 Thats滾動後,它看起來像什麼。
會很高興我可以幫助我。
或者,如果你繼承的UITableViewCell,你可以刪除'prepareForReuse'方法中的圖像,在單元被重用之前被調用。 – 2013-05-10 17:18:45
+1 @AaronBrager – nickchuckwalter 2013-05-11 00:01:04