gpt4 book ai didi

objective-c - 使用 NSOperation 出奇地慢

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:52:38 24 4
gpt4 key购买 nike

我正在处理一个问题。我使用这个 View 来查看我的应用程序中文档的缩略图。由于加载缩略图会减慢主线程的速度,我寻找解决方法并最终为缩略图创建任务执行了 NSOperation。

我正在显示一个带有空缩略图框的 View 和相应的事件指示器,以告诉用户“稍等,他们正在路上”。但这花了很长时间,所以我想放一些电梯音乐让等待更愉快 x_X。

我将此 NSOperationQueue 设置为最多 10 个并发操作。设置对加载部分有一点帮助,但只是一点点。 加载一个拇指仍然需要大约 6 秒,而且奇怪的是加载 10 个拇指也需要同样的时间。下面的代码是操作本身

@class ThumbnailView;

@protocol LoadThumbnailOperationDelegate;
@interface LoadThumbnailOperation : NSOperation {
NSString *key;
id<LoadThumbnailOperationDelegate> delegate;
@private
CGSize _size;
CGPDFDocumentRef _docRef;
UIImage * _image;
NSInteger _page;


}
@property (nonatomic,retain) NSString * key;
@property (nonatomic,assign) id<LoadThumbnailOperationDelegate>delegate;
-(id)initWithPage:(NSInteger)page operationKey:(NSString *)opKey fromDocRef:(CGPDFDocumentRef)docRef size:(CGSize)size delegate:(id<LoadThumbnailOperationDelegate>)aDelegate;
-(NSInteger)getPage ;
@protocol LoadThumbnailOperationDelegate <NSObject>

-(void)operation:(LoadThumbnailOperation*)operation finishedLoadingThumbnail:(UIImage*)image;
@end


@interface LoadThumbnailOperation (private)
-(UIImage*)makeThumbnailForPage:(NSInteger)page;

@end

@implementation LoadThumbnailOperation
@synthesize key;
@synthesize delegate;

-(id)initWithPage:(NSInteger)page operationKey:(NSString *)opKey fromDocRef:(CGPDFDocumentRef)docRef size:(CGSize)size delegate:(id<LoadThumbnailOperationDelegate>)aDelegate{

self = [super init];
if (self) {

self.key = opKey;
_docRef = docRef;
CGPDFDocumentRetain(_docRef);
_size = size;
_page = page;
self.delegate = delegate;

}
return self;
}

-(void)main {
#if DEBUG
NSLog( @"LoadThumbnailOperaiton.m -> main key:%@",key);
#endif
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];
if (![self isCancelled]) {
_image = [self makeThumbnailForPage:_page];
[_image retain];
}
if(![self isCancelled]){
if ([delegate respondsToSelector:@selector(operation:finishedLoadingThumbnail:)]) {
[delegate operation:self finishedLoadingThumbnail:_image];
}
}

[pool release];
}


-(void)dealloc {


[key release];
CGPDFDocumentRelease(_docRef);
[_image release];
[super dealloc];

}
#pragma mark -
#pragma mark graphics


-(UIImage*) makeThumbnailForPage :(NSInteger) page {
#if DEBUG
NSLog( @"LoadThumbnailOperaiton.m -> makeThumbnailForPage:%d",page);
#endif
CGPDFPageRef pdfPage = CGPDFDocumentGetPage(_docRef, page);
if (pdfPage !=NULL){
CGPDFPageRetain(pdfPage);

}else {
NSAssert (pdfPage==NULL,@"pdf page NULL");
}

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef context = CGBitmapContextCreate(NULL,
_size.width,
_size.height,
8, /* bits per component*/
_size.width * 4, /* bytes per row */
colorSpace,
kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextClipToRect(context, CGRectMake(0, 0, _size.width,_size.height));


CGRect pdfPageRect = CGPDFPageGetBoxRect(pdfPage, kCGPDFMediaBox);
CGRect contextRect = CGContextGetClipBoundingBox(context);
CGAffineTransform transform =aspectFit(pdfPageRect, contextRect);

CGContextConcatCTM(context, transform);
CGContextDrawPDFPage(context, pdfPage);

/*
create bitmap context
*/
CGImageRef image = CGBitmapContextCreateImage(context);
CGContextRelease(context);
UIImage *uiImage = [[UIImage alloc]initWithCGImage:image];

// clean up
[uiImage autorelease];
CGImageRelease(image);
CGPDFPageRelease(pdfPage);
return uiImage;
}

-(NSInteger)getPage {

return _page;
}
@end

这是 View Controller 上的委托(delegate)方法,用于添加已加载的图像

注意:此应用仅适用于 iPad

预先感谢您的帮助

最佳答案

嗯,我找到了解决此问题的方法。我通过检查委托(delegate)调用是否在主线程上完成来解决它。显然,操作完成得非常快,但委托(delegate)调用不是因为它不是在主线程上完成的。因此,请确保使用 -[NSObject performSelectorOnMainThread:] 方法在该线程上进行委托(delegate)调用。

对于某些客户来说,这可能仍然不够快。我最终用 automator 生成了 pdf 缩略图,并将它们添加到应用程序包中,然后从磁盘加载它们。比在 ipad 上生成它们快得多。

关于objective-c - 使用 NSOperation 出奇地慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4864770/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com