我正在尝试做一件非常简单的事情:在PDF文件中写一个可以被用户实际点击的URL。
我确信使用libharu可以完成。我正在寻找的是使用Core Graphics做同样的事情,因为我在我的应用程序中已有的整个代码已经在使用这些方法。
== edit ==
我想我找到了一些东西:UIGraphicsSetPDFContextURLForRect
但我无法让它发挥作用。
我正在使用类似的东西:
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
UIGraphicsSetPDFContextURLForRect( url, CGRectMake(0, 0, 100, 100));
但是,矩形不可点击。
答案 0 :(得分:12)
好的,我设法弄清楚它为什么不起作用。
核心图形上下文是“反转”的,因为原点位于页面的左下角,而UIKit的原点位于左上角。
这是我提出的方法:
- (void) drawTextLink:(NSString *) text inFrame:(CGRect) frameRect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGAffineTransform ctm = CGContextGetCTM(context);
// Translate the origin to the bottom left.
// Notice that 842 is the size of the PDF page.
CGAffineTransformTranslate(ctm, 0.0, 842);
// Flip the handedness of the coordinate system back to right handed.
CGAffineTransformScale(ctm, 1.0, -1.0);
// Convert the update rectangle to the new coordiante system.
CGRect xformRect = CGRectApplyAffineTransform(frameRect, ctm);
NSURL *url = [NSURL URLWithString:text];
UIGraphicsSetPDFContextURLForRect( url, xformRect );
CGContextSaveGState(context);
NSDictionary *attributesDict;
NSMutableAttributedString *attString;
NSNumber *underline = [NSNumber numberWithInt:NSUnderlineStyleSingle];
attributesDict = @{NSUnderlineStyleAttributeName : underline, NSForegroundColorAttributeName : [UIColor blueColor]};
attString = [[NSMutableAttributedString alloc] initWithString:url.absoluteString attributes:attributesDict];
[attString drawInRect:frameRect];
CGContextRestoreGState(context);
}
这种方法的作用是:
UIGraphicsSetPDFContextURLForRect
将其标记为可点击时标记框时获得可用的矩形xformRect
)标记为可点击答案 1 :(得分:0)
此处是 Swift 5
的转换代码+ ()