iOS Play

设置图片为圆形,加边框

2017-05-03  本文已影响43人  tianheng
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(20, 80, 40, 40
)];
    imgView.image = [UIImage imageNamed:@"留言簿.png"];
    imgView.layer.masksToBounds=YES;
    imgView.layer.cornerRadius=40/2.0f; //设置为图片宽度的一半出来为圆形
    imgView.layer.borderWidth=3.0f; //边框宽度
    imgView.layer.borderColor=[[UIColor whiteColor] CGColor];//边框颜色
//    imgView.layer.anchorPoint = CGPointMake(0.5, 1)
    [self.view addSubview:imgView];
上一篇 下一篇

猜你喜欢

热点阅读