1
UIViewからテキストを保存する、つまり選択可能なテキストを使用してPDFを作成する方法やライブラリはありませんか。私は以下を試しましたが、明快さはビットマップとしてレンダリングされるので損なわれます。UIViewからPDFを作成する
+ (NSData *)pdfDataOfScrollView:(UITableView *)scrollView
{
NSMutableData *pdfData = [NSMutableData data];
UIGraphicsBeginPDFContextToData(pdfData, scrollView.bounds, nil);
UIGraphicsBeginPDFPage();
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
[scrollView.layer renderInContext:pdfContext];
// remove PDF rendering context
UIGraphicsEndPDFContext();
return pdfData;
}
https://github.com/iclems/iOS-htmltopdfこのコードを試してみてください。このライブラリはあなたに役立つかもしれません –