一些常见的属性的方法 UIButton * getVerificationCodeBtn = (UIButton *)[cell.contentView viewWithTag:102]; getVerificationCodeBtn.cornerRadius = 15;//圆角 getVerifi
分类:
其他好文 时间:
2016-03-11 22:17:25
阅读次数:
118
//UIView+CornerRadius.h @interface UIView (CornerRadius) @property (nonatomic, assign) IBInspectable CGFloat cornerRadius; @end //UIView+CornerRadius.
分类:
其他好文 时间:
2016-03-01 17:14:19
阅读次数:
168
当我们使用AutoLayout做适配时,可能会有这样的需求,就是在想在适配完成前就取得子控件的真实frame,来做一些操作。比如我们想把一个正方形的UIImageView剪成一个圆形,这时候就需要这么做self.imageView.layer.cornerRadius = self.imageVie...
分类:
其他好文 时间:
2016-01-25 14:57:13
阅读次数:
126
1 self.iconView.layer.borderWidth = 10;2 self.iconView.layer.borderColor = [UIColor purpleColor].CGColor;3 self.iconView.layer.cornerRadius = ...
分类:
移动开发 时间:
2016-01-24 00:36:19
阅读次数:
222
常见视觉相关属性cornerRadius 圆角曲率(58页)borderWidth 边框宽度(61页)borderColor 边框颜色shadowOpacity 阴影(0 - 1之间的值) 注意阴影是根据寄宿图的轮廓来确定的,而不是边框等shadowColor 阴影颜色shadowOf...
分类:
其他好文 时间:
2016-01-22 21:28:43
阅读次数:
179
UIImageView设置为圆形的方法: _Image.layer.masksToBounds = YES; _Image.layer.cornerRadius = self.Image.frame.size.width / 2;设置加载本地图片的方法: _Image.image = [UI...
分类:
移动开发 时间:
2016-01-19 01:31:36
阅读次数:
191
1.给UIView设置圆角,边框,阴影绘制,需要使用layer1)设置圆角cornerView.layer.cornerRadius = 20; //设置试图圆角的大小cornerView.layer.masksToBounds = YES //防止子元素溢出父试图将一个正方形设置成圆形,代码为.....
分类:
其他好文 时间:
2016-01-14 22:20:46
阅读次数:
317
1.绘制圆角cornerView.layer.cornerRadius = 20; //设置试图圆角的大小cornerView.layer.masksToBounds = YES //防止子元素溢出父试图将一个正方形设置成圆形,代码为:cornerView.layer.cornerRadius .....
分类:
其他好文 时间:
2016-01-14 16:11:06
阅读次数:
357
圆角sampleView.layer.cornerRadius = 2.5; // 圓角的弧度sampleView.layer.masksToBounds = YES;阴影sampleView.layer.shadowColor = [[UIColor blackColor] CGColor];sa...
分类:
移动开发 时间:
2016-01-09 20:04:04
阅读次数:
197
当我们使用AutoLayout做适配时,可能会有这样的需求,就是在想在适配完成前就取得子控件的真实frame,来做一些操作。比如我们想把一个正方形的UIImageView剪成一个圆形,这时候就需要这么做self.imageView.layer.cornerRadius = self.imageVie...
分类:
其他好文 时间:
2016-01-08 07:03:38
阅读次数:
133