UIView * circleView = [[UIView alloc] initWithFrame: CGRectMake(100, 400, 100, 100)];
circleView.layer.backgroundColor = [UIColor clearColor].CGColor;
circleView.layer.borderColor = [UIColor redColor].CGColor;
circleView.layer.borderWidth = 10.0;
circleView.layer.cornerRadius = 50.0;
circleView.layer.masksToBounds = YES;
[self.view addSubview: circleView];