Hi, thanks for your reply... i have already done the circle image, but not sure how to add a thick 10px white border... any suggestions, thanks again for your help.
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];