当我运行这个东西时出现的位置有点偏离。它是一个简单的 CALayer 子类,带有一个 drawInContext 函数并将其定位在视图控制器中。
当我创建图层并添加它时,它是通过控制器代码中的此代码完成的。这将运行,因此创建了图层。但立场不正确。它似乎在纵向上效果更好,但我还需要检测旋转的方法(但这不是我立即关心的问题)。
- (void)viewDidLoad
{
[super viewDidLoad];
Canvas *c = [Canvas layer];
self.canvas = c;
[self.view.layer addSublayer: self.canvas];
//c.frame = self.view.bounds;
self.canvas.anchorPoint = CGPointMake(0, 0);
self.canvas.position = CGPointMake(0, 0);
self.canvas.bounds = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height);
self.canvas.backgroundColor = [UIColor lightGrayColor].CGColor;
[self.canvas setNeedsDisplay];
}
主要问题似乎在实际绘图中,代码如下,但即使在调用 needsDisplay 时它也没有实际运行。
- (void)drawInContext:(CGContextRef)ctx {
[super drawInContext: ctx];
CGContextSaveGState(ctx);
UIGraphicsPushContext(ctx);
// CGRect b = self.bounds;
[self drawOrigin];
UIGraphicsPopContext();
CGContextRestoreGState(ctx);
}
- (void) drawOrigin {
CGPoint centre = CGPointMake(self.bounds.size.width / 2, self.bounds.size.height / 2);
UIBezierPath *hl = [UIBezierPath bezierPath];
[hl moveToPoint: centre];
[hl addLineToPoint: CGPointMake(centre.x, 0)];
[hl moveToPoint: centre];
[hl addLineToPoint: CGPointMake(centre.x, self.bounds.size.height)];
[hl moveToPoint: centre];
[hl addLineToPoint: CGPointMake(0, centre.y)];
[hl moveToPoint: centre];
[hl addLineToPoint: CGPointMake(self.bounds.size.width, centre.y)];
[hl stroke];
}
我不知道在哪里可以找到这个代码。欢迎任何想法或方向。