ios - 在屏幕中间居中 CAShapeLayer 圆圈

标签 ios objective-c cashapelayer

我现在通过 CAShapeLayer 绘制一个圆圈,我希望我的圆圈位于屏幕中间。圆圈的中点必须是我 View 的中间点。

这就是我现在尝试这样做的方式:

- (void)_initCircle {
    [_circle removeFromSuperlayer];
    _circle = [CAShapeLayer layer];
    _radius = 100;

    // Create a circle
    _circle.path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 2.0 * _radius, 2.0 * _radius) cornerRadius:_radius].CGPath;

    // Center the shape in self.view
    _circle.position = CGPointMake(CGRectGetMidX(self.view.bounds) - _radius,
                                   CGRectGetMidY(self.view.bounds) - _radius);

    _circle.fillColor = [UIColor clearColor].CGColor;
    _circle.lineWidth = 5;

    // Add to parent layer
    [self.view.layer addSublayer:_circle];
}

屏幕截图清楚地表明圆圈在中间并不完美,因为标签位于屏幕中间(中心 Y)。我认为应该等于标签的圆圈的蓝色和黑色。

enter image description here

我没有看到计算错误,有人可以帮我吗?

编辑:

将边界更改为框架并关闭半径会得到以下结果:

enter image description here

最佳答案

层相对于它们的 anchor 定位自己,所以你可以尝试这样做:

// Center the shape in self.view
_circle.position = self.view.center;
_circle.anchorPoint = CGPointMake(0.5, 0.5);

关于ios - 在屏幕中间居中 CAShapeLayer 圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29229695/

相关文章:

ios - CAShapeLayer 虚线从边距开始

ios - Firebase:在 Swift 4 上找不到 FIRUser

android - 如何在SourceTree中自动创建标签

ios - 使用线条和平移手势连接点

ios - 升级到 iOS 11.3 破坏了 __weak UIAlertAction

Objective-C - 根据用户输入的查询搜索街道

Swift-animate CAshapeLayer 描边颜色

ios - 如何从自定义单元格类更改数据源

ios - 如何在 ios 中将 NSString 转换为 Float64?并从 TextField 中检索文本

iphone - 如何在 UItableView 中预选一行