在ios中将一个正方形的图片裁剪成圆形的图片是一件非常容易的事情, 直接设置 imageView.layer.cornerRadius 这个属性, 再设置 imageView.clipsToBounds = YES 就可以了, 但是对于长方形的图片来说这个方式裁剪出来的就不是一个圆形的了, 而是.....
分类:
移动开发 时间:
2015-09-21 13:56:24
阅读次数:
262
通过设置可以创建圆角border的CornerRadius属性其边框呈现圆角样式代码:效果图:位置说明:CornerRadius="左,右,右下,左下"提示:如过圆角处有颜色,请将外层容器的背景色设置为透明Background="Transparent" ...
UIView*view=[[UIViewalloc]initWithFrame:CGRectMake(100,100,100,100)];view.backgroundColor=[UIColorredColor];//设置圆角view.layer.cornerRadius=10;view.layer.masksToBounds=YES;//.设置边框view.layer.borderWidth=5;view.layer.borderColor=[UIColorgreenColor].CGCo..
分类:
其他好文 时间:
2015-09-16 16:00:53
阅读次数:
134
identity inspector 的key path 可以用来做圆角按钮和边框。layer.cornerRadius number 圆角按钮使用代理模式的时候,要注意,A 和 B的引用之间会循环引用,导致内存无法回收。 可以使引用设置为weak。 navigationBar 默认是透明的,颜色会...
分类:
移动开发 时间:
2015-09-15 21:33:56
阅读次数:
220
图2 为将原图直接‘剪切’成为圆形图3 为在图2基础上加上边框图4 为将原图’剪切‘为圆角图片图5 为在图4的基础上加上边框接下来奉上代码://圆形图像变化 如图二//将方形图片变成圆形 需要将半径设为 原图像宽度的一半self.imageView2.layer.cornerRadius = sel...
分类:
其他好文 时间:
2015-08-30 12:54:41
阅读次数:
276
先创建一个图片imageView self.imageView =[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tara4.jpg"]];
self.imageView.frame =CGRectMake(85, 400, 200, 200);
self.imageView.layer.cornerRadius =1...
分类:
其他好文 时间:
2015-08-29 18:51:39
阅读次数:
232
设置圆角Button
button.layer.borderColor =
UIColor.whiteColor().CGColor;
button.layer.borderWidth =
2;
button.layer.cornerRadius =
16;
设置圆角边框TextView
inputTextView.layer.borderColor =...
分类:
编程语言 时间:
2015-08-27 13:30:03
阅读次数:
391
1.圆角设置viewT.layer.cornerRadius=10;//设置那个圆角的有多圆 viewT.layer.borderWidth=10;//设置边框的宽度,当然可以不要viewT.layer.borderColor=[[UIColorredColor]CGColor];//设置边框的颜色...
分类:
其他好文 时间:
2015-08-27 13:01:04
阅读次数:
103
直接上代码:
self.textView.layer.borderColor =
UIColor(red: 60/255, green: 40/255, blue: 129/255, alpha: 1).CGColor;
self.textView.layer.borderWidth = 2;
self.textView.layer.cornerRadius = 16;...
分类:
编程语言 时间:
2015-08-19 20:31:05
阅读次数:
142
1. 设置圆角:self.view.layer.masksToBounds = YES;self.view.layer.cornerRadius = 10.0f;2. 添加边框:self.layer.borderWidth = 5.0f;self.layer.borderColor = [[UICo...
分类:
移动开发 时间:
2015-08-17 23:09:22
阅读次数:
151