UIImageView 圆形的两种方法1、cornerRadius (tableView,collectionView尽量避免使用,影响性能)//想要圆角 cornerRadius必须是 imageview高的一半imageView.layer.cornerRadius = imageView.fr...
分类:
其他好文 时间:
2015-08-09 15:25:58
阅读次数:
110
1.图片头像切成圆【不是半径的话 不是正圆】
self.imgvHead.clipsToBounds =
YES;
self.imgvHead.layer.cornerRadius
= self.imgvHead.bounds.size.height/2;
self.imgvHead.layer.borderWidth
= 0.5f;
...
分类:
其他好文 时间:
2015-08-05 12:59:04
阅读次数:
114
貌似又忙忙碌碌得过了许久,今天过得还比较悠闲,刚好遇到一个问题:画圆角。不是四个圆角一起,而是制定某一个或几个圆角,这时layer.cornerRadius就不怎么好用了。对于这种情况,Stackoverflow上提供了几种解决方案。其中最简单优雅的方案,就是使用UIBezierPath。下面给出一...
分类:
移动开发 时间:
2015-07-29 19:04:53
阅读次数:
127
如果需要将UIView的4个角全部都为圆角,做法相当简单,只需设置其Layer的cornerRadius属性即可(项目需要使用QuartzCore框架)。而若要指定某几个角(小于4)为圆角而别的不变时,这种方法就不好用了。对于这种情况,Stackoverflow上提供了几种解决方案。其中最简单优雅的...
分类:
移动开发 时间:
2015-07-28 18:22:02
阅读次数:
142
imgLogo.layer.masksToBounds= YES; //设置在layer之下的都盖住 imgLogo.layer.cornerRadius = imgLogo.bounds.size.width*0.5; //设置layer的圆角,是自身宽度的一半 imgLogo.layer.bo....
分类:
其他好文 时间:
2015-07-28 12:38:40
阅读次数:
106
self.label1.layer.borderWidth=1;//边框宽度 //self.label1.layer.cornerRadius=5;//边框圆角 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); C...
分类:
其他好文 时间:
2015-07-23 11:55:38
阅读次数:
98
首先初始化一个要展示的泡泡视图 paopaoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 80)]; paopaoView.layer.cornerRadius = 10; paopaoView.layer....
分类:
其他好文 时间:
2015-07-14 10:02:28
阅读次数:
175
[objc] view
plaincopyprint?
@interface UIView (RectCorner)
@end
@implementation UIView (RectCorner)
- (void)setCornerOnTop {
UIBezierPath *maskPath;
maskP...
分类:
其他好文 时间:
2015-07-07 09:38:37
阅读次数:
252
//----------第一种方法-------------------// _img.layer.cornerRadius = 150;// _img.layer.masksToBounds = YES;// _img.layer.contents = [UIImage imageName...
分类:
其他好文 时间:
2015-07-02 17:21:09
阅读次数:
120
通过layler//创建头像视图UIButton*logoButton=[[UIButtonalloc]init];logoButton.frame=CGRectMake(50,50,100,100);logoButton.layer.cornerRadius=50;logoButton.backg...
分类:
其他好文 时间:
2015-06-26 10:50:32
阅读次数:
111