私は次のことを達成しようとしています: ユーザーがビューをタップすると、その左側にいくつかの画像コンテンツを含む円形のビューがポップアップします。ビューは、タッチしたポイントから開始して、タッチされたビューの外側で左にある最終フレームまでアニメーション化する必要があります。アニメーション中は円になり、適切な位置とサイズに成長します
すべてが以下のコードでうまく機能しますが、アニメーション中のみ、円形の境界は左側にのみあります。CALayer
シェイプが最終フレームに滑り込むようなものです。
なんかこんな感じです。
アニメーションが完了すると、予想どおり完全な円になります。
CGFloat w = 300;
CGRect frame = CGRectMake(myX, myY, w, w);
CGPoint p = [touch locationInView:self.imageView];
CGRect initialFrame = CGRectMake(p.x, p.y, 0,0);
UIImageView *circle = [[UIImageView alloc] initWithFrame:frame];
circle.image = [UIImage imageNamed:@"china"];
circle.contentMode = UIViewContentModeScaleAspectFill;
circle.backgroundColor = [UIColor clearColor];
circle.layer.borderWidth = 1;
circle.layer.borderColor = [UIColor grayColor].CGColor;
circle.layer.masksToBounds = YES;
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
CGRect maskRect = CGRectMake(0, 0, w, w);
CGMutablePathRef path = CGPathCreateMutable();
CGPathAddEllipseInRect(path, nil, maskRect);
maskLayer.path = path;
CGPathRelease(path);
circle.layer.mask = maskLayer;
circle.frame = initialFrame;
[self.imageView addSubview:circle];
[UIView animateWithDuration:1.0 animations:^{
circle.frame = frame;
}];
cornerRadius
ので作業してみましたCALayer
が、フレーム サイズによって半径も変更する必要があるため、満足のいく結果にはなりません。