请给我一些好的建议.
谢谢.
CGRect frame = self.reportWebVIEw.frame; CGSize fittingSize = [self.reportWebVIEw sizeThatFits:CGSizeZero]; frame.size = fittingSize; self.reportWebVIEw.frame = frame; NSMutableData *pdfData = [NSMutableData data]; @autoreleasepool { // Points the pdf converter to the mutable data object and to the UIVIEw to be converted UIGraphicsBeginPdfcontextToData(pdfData,self.reportWebVIEw.bounds,nil); UIGraphicsBeginpdfpage(); [self.reportWebVIEw.layer renderInContext:UIGraphicsGetCurrentContext()]; UIGraphicsEndPdfcontext(); }解决方法 您正在以错误的方式呈现上下文.
代替
[self.reportWebVIEw.layer UIGraphicsGetCurrentContext()];
试试这个
self.reportWebVIEw.layer.renderInContext(UIGraphicsGetCurrentContext())总结
以上是内存溢出为你收集整理的ios – 从UIWebview应用程序崩溃创建pdf时全部内容,希望文章能够帮你解决ios – 从UIWebview应用程序崩溃创建pdf时所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)