2
我在使用第三方框架進行異步映像下載時性能下降。 我試過了AFNetworking
和SDWebImage
,UICollectionView
的滾動變得非常慢。性能下降UICollectionView異步映像下載
我已經試過如下:
-(void)setImageForIndexPath:(NSIndexPath*)path withUrl:(NSURL*)url{
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFImageRequestOperation *operation;
operation = [AFImageRequestOperation imageRequestOperationWithRequest:request success:^(UIImage *image) {
CollectionCellPreview *cell = (CollectionCellPreview *)[self.collectionView cellForItemAtIndexPath:path];
cell.myImageView.image = image;
}];
[operation start];
}
也如:
[cell.imageLocation setImageWithURL:url];
我失去的東西通過這個框架很重要?它似乎非常有用和強大,我不明白它爲什麼這樣表現。
你的意思是把圖像下載緩慢?或者您的收藏視圖中有不連貫的滾動? –
我在UICollectionView中有不連貫的滾動,我注意到它在模擬器上比較慢。 – aumanets
我正在使用帶有SDWebImage的UICollectionView。我沒有慢速滾動問題。這個問題可能來自其他地方。 –