我们正在尝试使用 UIView.layer 的 renderInContext 方法创建多个 pdf 文件
下面的代码在自动释放池中运行。
---loop
UIGraphicsBeginPDFContextToFile(documentDirectoryFilename, CGRectZero, nil);
UIGraphicsBeginPDFPage();
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
[view.layer renderInContext:pdfContext];
view =nil;
pdfContext =nil
UIGraphicsEndPDFContext()
--loop ends
经过几次迭代后,驻留内存增加到 20 mb,随后的迭代增加了使用的总内存。
有些 ARC 没有释放用于渲染 pdf 的内存,因此应用程序因内存不足而崩溃。
应用程序正在使用 ARC
任何解决该问题的帮助或指示将不胜感激。
谢谢
更新:感谢您的快速回复。
对于伪代码中的拼写错误,我深表歉意。这是来自测试项目的示例代码。
-(BOOL)addUIViewToPDFFile:(UIView*)view newBounds:(CGRect)newBounds pdfFile:(NSString*)pdfFile{
BOOL retFlag =YES;
NSArray* documentDirectories = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
NSString* documentDirectory = [documentDirectories objectAtIndex:0];
NSString* documentDirectoryFilename = [documentDirectory stringByAppendingPathComponent:pdfFile];
UIGraphicsBeginPDFContextToFile(documentDirectoryFilename, CGRectZero, nil);
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
if([NSThread isMainThread]){
NSLog(@"Main Thread");
}else{
NSLog(@"Not in Main Thread");
}
UIGraphicsBeginPDFPage();
logMemUsage1();
[view.layer renderInContext:pdfContext];
UIGraphicsEndPDFContext();
pdfContext = nil;
logMemUsage1();
return retFlag;
}
- (IBAction)createPdf:(id)sender {
for(int i=0;i<10;i++){
@autoreleasepool {
PDFViewController *vc = [[PDFViewController alloc] init];
[vc loadView];
NSString *PdfFileName =[ NSString stringWithFormat:@"TestPdf%d.pdf",i ];
[self addUIViewToPDFFile:vc.view newBounds:self.view.frame pdfFile:PdfFileName];
vc = nil;
}
} }
还有一点要补充的是,当应用程序在按下硬件主页按钮时进入后台并再次返回前台时,内存似乎被清除和释放。
我期望在每次迭代之后,应该释放用于创建 pdf 的内存。