iPhone 롤업의 모든 이미지를 내 iPhone 앱에 표시하고 있습니다. 앱이 시작될 때 카메라 롤의 모든 이미지 목록을 포함하는 ALAsset *
배열을 만듭니다. 나는 이미지보기에서 이러한 이미지를로드하여 세포를 형성 :iOS GridView에서 카메라 롤 이미지로드 매우 느림
// Get the full resolution image for asset
ALAssetRepresentation *assetRep = [asset defaultRepresentation];
UIImage *image = [UIImage imageWithCGImage:[assetRep fullResolutionImage]];
[cell.imageCropper setImage:image];
새로운 셀이
- (AQGridViewCell *) gridView: (AQGridView *) aGridView cellForItemAtIndex: (NSUInteger) index
문제에 요청 될 때 나는 이렇게 많은 이미지와 사용자가있을 때이 지연이다 이미지를 빠르게 스크롤합니다. 이것을 올바르게 처리하는 방법은 무엇입니까?
썸네일 내가 작업 한 응용 프로그램에 비해 너무 작습니다. @HeikoG에서 제안한대로 백그라운드 로딩과 함께'fullScreenImage'를 사용하여 끝내게되었습니다. –