ストロークで円を描きたいだけです。以下のコードはうまく描画されますが、円を塗りつぶします。
埋めたくない。私を助けてください
self.circleView = [[UIView alloc] initWithFrame:CGRectMake(10,20,20,20)];
circleView.alpha = 0.5;
self.circleView.layer.cornerRadius = 50;
self.circleView.backgroundColor = [UIColor whiteColor];