如何绘制一个与UICollisionBehavior相似的圆圈UIView?

时间:2014-01-21 02:53:32

标签: ios objective-c uiview uicollisionbehavior

在我的应用程序中,我正在绘制一个基本视图,然后我尝试使用CAShapeLayer来绕过它的角落,但是UICollisionBehavior仍然会像它是一个被绘制的正方形一样反应。

以下是我的代码

的示例
  UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds
                                           byRoundingCorners:UIRectCornerAllCorners
                                                 cornerRadii:radiiSize];

// Mask the container view’s layer to round the corners.
CAShapeLayer *cornerMaskLayer = [CAShapeLayer layer];
[cornerMaskLayer setPath:path.CGPath];
self.containerView.layer.mask = cornerMaskLayer;
self.containerView.layer.allowsEdgeAntialiasing = YES;

1 个答案:

答案 0 :(得分:-3)

只需执行此操作而不是使用UIBezierPath

self.containerView.layer.cornerRadius = [Radius is half the height/width];
self.containerView.clipsToBounds = YES;