iOS-方形图片设置成圆形图片

来源:互联网 发布:linux搭建ftp服务器 编辑:程序博客网 时间:2024/05/14 03:37

                                                    

创建一个方形的button,添加方形的背景图片,设置显示为圆形

    self.view.backgroundColor=[UIColororangeColor];

    button=[UIButtonbuttonWithType:UIButtonTypeCustom];

    button.frame=CGRectMake(0,0, 200, 200);

    button.center=self.view.center;

     button.layer.cornerRadius=100;

  button.layer.masksToBounds=YES;

    button.backgroundColor=[UIColororangeColor];

    [buttonsetImage:[UIImageimageNamed:@"fang"]forState:UIControlStateNormal];

    [self.viewaddSubview:button];





0 0