我正在加载一个CGPDFDocument,将其作为子层添加到UIView(myContentView),然后将myContentView添加到UIScrollView。这很好。现在我想让用户在他们选择时旋转PDF。很容易让PDF最初显示一些旋转 - 我只是在这里做:
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx {
CGContextSaveGState (ctx);
CGContextSetRGBFillColor(ctx, 1.0, 1.0, 1.0, 1.0);
CGContextFillRect(ctx, CGContextGetClipBoundingBox(ctx));
CGContextTranslateCTM(ctx, 0.0, layer.bounds.size.height);
CGContextScaleCTM(ctx, 1.0, -1.0);
CGContextConcatCTM(ctx, CGPDFPageGetDrawingTransform(myPageRef, kCGPDFCropBox, layer.bounds, rotation, true));
CGContextDrawPDFPage(ctx, myPageRef);
CGContextRestoreGState (ctx);
}
但是,如何在初始加载后执行此操作?
注意:我尝试过旋转myContentView,看起来很有效,但在完成之后,我再也无法缩放/取消缩放PDF ...我认为我需要的是强制再次调用drawLayer “轮换”中的新值...我该怎么做?
谢谢, 史蒂夫
答案 0 :(得分:0)
要表示需要重新绘制图层,请向其发送setNeedsDisplay
或setNeedsDisplayInRect:
消息。您必须在ivar / property中存储所需的旋转角度,并从drawLayer:inContext:
访问该值。
答案 1 :(得分:0)
尝试在图层上调用setNeedsDisplay