描かれた最初の円 (最も内側の円) は問題ありませんが、次第に円が小さくなっていきますか? これは反復と関係があるに違いないことはわかっています。
//LOAD CIRCLES
circleWidth = 100;
circleHeight = 100;
for (int i = 0; i < 4; i++) {
UIView *circleView = [[UIView alloc] init];
circleView.frame = CGRectMake(0, 0, circleWidth, circleHeight);
circleView.center = self.view.center;
circleView.alpha = 0.7;
circleView.layer.cornerRadius = 50;
circleView.backgroundColor = [UIColor clearColor];
circleView.layer.borderColor = [[UIColor whiteColor] CGColor];
circleView.layer.borderWidth = 3;
circleHeight += 50;
circleWidth += 50;
[self.view addSubview:circleView];
[self.view sendSubviewToBack:circleView];
}