我希望在上下文中绘制后更改PDF格式的文本。 我也尝试使用以下代码。
CGContextRef context = UIGraphicsGetCurrentContext();
CGAffineTransform ctm = CGContextGetCTM(context);
CGRect xformRect = CGRectApplyAffineTransform(frameRect, ctm);
NSURL *url = [NSURL URLWithString:text];
UIGraphicsSetPDFContextURLForRect( url, xformRect );
UIButton *button = [[UIButton alloc] initWithFrame:frameRect];
[button setBackgroundColor:[UIColor clearColor]];
[button setAccessibilityLabel:url.absoluteString];
CGContextSaveGState(context);
// CGContextClearRect(context, frameRect);
在此我在URL.absoluteString中获取空值
所以我只想用自定义代码
更改它任何形式的帮助都将受到赞赏。