这是我用来打印的代码:
UIGraphicsBeginImageContext(self.maintableVIEw.contentSize);[self.maintableVIEw.layer renderInContext:UIGraphicsGetCurrentContext()];UIImage *vIEwImage = UIGraphicsGetimageFromCurrentimageContext();UIGraphicsEndImageContext();UIPrintInteractionController *printer = [UIPrintInteractionController sharedPrintController];printer.printingItem = vIEwImage;uiprintinfo *info = [uiprintinfo printInfo];printer.printInfo = info;UIPrintInteractionCompletionHandler completionHandler =^(UIPrintInteractionController *pic,BOol completed,NSError *error) { if (!completed && error) NSLog(@"Failed! due to error in domain %@ with error code %u: %@",error.domain,error.code,[error localizedDescription]);}; UIbutton * printbutton = (UIbutton *)sender;if(UIUserInterfaceIdiomPad == [[UIDevice currentDevice] userInterfaceIdiom]){ [printer presentFromrect:printbutton.frame inVIEw:self.vIEw animated:YES completionHandler:completionHandler];} else { [printer presentAnimated:YES completionHandler:completionHandler];}解决方法 关于这个问题有很多讨论.两个例子:
SO: Screenshot from a UITableView
SO: How to take an iPhone screenshot of entire view including parts off screen
问题是,UItableVIEws重用它们的单元格.
我认为最常见的方法是:
>以编程方式滚动到UItableVIEw的不同部分,拍摄不同的屏幕截图并将它们再次合并在一起.>调整UItableVIEw的大小,以便所有单元格都适合它.警告:这很快就会导致内存问题(不再需要重复使用单元),所以只是为了屏幕截图而且你的单元数不是那么大.
总结以上是内存溢出为你收集整理的ios – 打印屏幕内容的UITableView?全部内容,希望文章能够帮你解决ios – 打印屏幕内容的UITableView?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)