Второй круг внутри первого круга

Я хотел бы поставить новый круг на линии второго большего круга. Ниже мой код:

self.circleView = [[UIView alloc] init];
[self.circleView setBackgroundColor:[UIColor clearColor]];
[self.circleView setClipsToBounds:YES];
[self.circleView.layer setCornerRadius:self.contentView.frame.size.width/2];
[self.circleView.layer setBorderColor:[UIColor colorWithRed:0.80 green:0.26 blue:0.82 alpha:1].CGColor];
[self.circleView.layer setBorderWidth:5];
[self.contentView addSubview:self.circleView];

self.circleView2 = [[UIView alloc] initWithFrame:CGRectMake(self.contentView.frame.size.width/2,20,20,20)];
self.circleView2.layer.cornerRadius = 10;
self.circleView2.backgroundColor = [UIColor blueColor];
[self.contentView addSubview:self.circleView2];

Итак, результат сейчас:

Конечный результат показывают на фото ниже:

0 ответов

Другие вопросы по тегам