iOS-看图学习如何在xib\storyboard中使用KVC

在代码中设置按钮圆角样式有两种方法:

方法一:

self.loginBtn.layer.cornerRadius = 5;

self.loginBtn.layer.masksToBounds = YES;


方法二:

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

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


在xib\storyboard中使用KVC;

方法三:


iOS-看图学习如何在xib\storyboard中使用KVC_第1张图片

你可能感兴趣的:(iOS-看图学习如何在xib\storyboard中使用KVC)