我想将不可见的文本插入到 iOS 中生成的 pdf 中。如何才能做到这一点?
这就是我目前生成 PDF 的方式:
- (void) generatePdfWithFilePath: (NSString *)thefilePath words:(NSString *)string
{
UIGraphicsBeginPDFContextToFile(thefilePath, CGRectZero, nil);
UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, 612, 792), nil);
[self drawText:string];
// Close the PDF context and write the contents out.
UIGraphicsEndPDFContext();
}