我有多個圖像和視頻存儲在應用程序文檔目錄中。我以這種方式使用SDWebImage在集合視圖中顯示該圖像和視頻。無法更快地將本地存儲的圖像加載到集合視圖中。
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
AlbumImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"AlbumImageCell" forIndexPath:indexPath];
cell.albumImage.image=nil;
cell.layer.shouldRasterize = YES;
cell.layer.rasterizationScale = [UIScreen mainScreen].scale;
if (cell == nil) {
cell = [[[NSBundle mainBundle] loadNibNamed:@"AlbumImageCell" owner:self options:nil] objectAtIndex:0];
}
NSInteger Type=[[[self.arrTbl_Album_Image objectAtIndex:indexPath.row] objectAtIndex:3] intValue];
if (Type==1) {
cell.imgPlay.hidden=YES;
[cell.albumImage setImage:[images objectAtIndex:indexPath.row]];
}else{
cell.imgPlay.hidden=NO;
[cell.albumImage setImage:[images objectAtIndex:indexPath.row]];
}
return cell;
}
這裏是生成縮略圖的代碼。
-(void)load_Album_Data{
NSUserDefaults *album_id=[NSUserDefaults standardUserDefaults];
NSInteger Album_id=[album_id integerForKey:@"album_Id"];
//From the query.
NSString *query=[NSString stringWithFormat:@"select * from tbl_Album_Image where album_id='%ld' order by id desc",Album_id];
//Get result.
if (self.arrTbl_Album_Image != nil) {
self.arrTbl_Album_Image=nil;
}
self.arrTbl_Album_Image=[[NSArray alloc]initWithArray:[self.dbManager loadDataFromDB:query]];
dispatch_queue_t myQueue = dispatch_queue_create("MyQueue",NULL);
dispatch_async(myQueue, ^{
for(int i=0;i<self.arrTbl_Album_Image.count;i++)
{
NSInteger AssetType=[[[self.arrTbl_Album_Image objectAtIndex:i] objectAtIndex:3] intValue];
if (AssetType==1) {
//for image
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *inputPath = [[self.arrTbl_Album_Image objectAtIndex:i]objectAtIndex:2 ];
NSString *imageEx=[inputPath pathExtension];
NSString *imageName=[[inputPath lastPathComponent]stringByDeletingPathExtension];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",imageName,imageEx]];
UIImage *img=[UIImage imageWithContentsOfFile:fullPath];
CGFloat scale = MAX(106/img.size.width, 106/img.size.height);
CGFloat width = img.size.width * scale;
CGFloat height = img.size.height * scale;
CGRect imageRect = CGRectMake((106 - width)/2.0f,
(106 - height)/2.0f,
width,
height);
CGSize c=CGSizeMake(106, 106);
UIGraphicsBeginImageContextWithOptions(c, NO, 0);
[img drawInRect:imageRect];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[images addObject:newImage];
}
else{
//for video
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *inputPath = [[self.arrTbl_Album_Image objectAtIndex:i]objectAtIndex:2 ];
NSString *imageEx=[inputPath pathExtension];
NSString *imageName=[[inputPath lastPathComponent]stringByDeletingPathExtension];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",imageName,imageEx]];
NSURL *videoURL = [NSURL fileURLWithPath:fullPath];
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];
AVAssetImageGenerator *imageGenerator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
imageGenerator.appliesPreferredTrackTransform = YES;
NSError *err = NULL;
CMTime time = CMTimeMake(1, 2);
CGImageRef imageRef = [imageGenerator copyCGImageAtTime:time actualTime:NULL error:&err];
UIImage *thumbNailImage = [[UIImage alloc] initWithCGImage:imageRef];
CGFloat scale = MAX(106/thumbNailImage.size.width, 106/thumbNailImage.size.height);
CGFloat width = thumbNailImage.size.width * scale;
CGFloat height = thumbNailImage.size.height * scale;
CGRect imageRect = CGRectMake((106 - width)/2.0f,
(106 - height)/2.0f,
width,
height);
CGSize c=CGSizeMake(106, 106);
UIGraphicsBeginImageContextWithOptions(c, NO, 0);
[thumbNailImage drawInRect:imageRect];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[images addObject:newImage];
}
dispatch_async(dispatch_get_main_queue(), ^{
//Reload the Image view.
[self.album_ImageView reloadData];
}
});
}
});
}
但問題是我無法更快地加載圖像,並且當上下滾動發生得很快時,應用程序崩潰。並且還不生成視頻圖像。 請幫我解決這個問題,併爲我提供任何解決方案。 我想在集合視圖單元格中加載快速圖像。
詳細描述了崩潰,消息和堆棧跟蹤 – Wain
@請參見此詳細信息1)收到的內存警告.2)通信錯誤: {count = 1,contents = \t「XPCErrorDescription」=> {length = 22,contents =「連接中斷」} } 3)ImageIO:CGImageSourceCreateWithData數據參數爲零。我滾動上下集合視圖和應用程序崩潰 –
什麼是圖像,他們有多大,什麼格式,哪一個正試圖加載時崩潰(大概這也發生如果你慢慢地向下滾動並等待每個圖像在去下一個單元之前完成)? – Wain