登录图片出现圆角方法

首先连线。

      @property (weak, nonatomic) IBOutlet UIButton *loginButton;

1.第一种方法。

      self.loginButton.layer.cornerRadius = 5;

      self.loginButton.clipsToBounds = YES;

2.第二种方法

     self.loginButton.layer.cornerRadius = 5;

     self.loginButton.layer.masksToBounds = YES;

3.第三种方法KVC

[self.loginButton setValue:@5 forKeyPath:@"layer.cornerRadius"];

[self.loginButton setValue:@YES forKeyPath:@"layer.masksToBounds"];

4.第四种方法 xib或storyboard设置


登录图片出现圆角方法_第1张图片

你可能感兴趣的:(登录图片出现圆角方法)