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();
}