钟表,可以回到起点,却已不是错天

2014.12.9 ios按钮或图片框圆角处理

 图片框圆角处理(UIImageView):

导入库头文件(重点)
#import <QuartzCore/QuartzCore.h>
 
//圆角设置
imageView.layer.cornerRadius = 6;
imageView.layer.masksToBounds = YES;

 

//边框宽度及颜色设置
[imageView.layer setBorderWidth:2];
[imageView.layer setBorderColor:[UIColor blueColor]];  //设置边框为蓝色
 
//自动适应,保持图片宽高比
imageView.contentMode = UIViewContentModeScaleAspectFit;
posted @ 2014-12-09 09:45  独一无二  阅读(199)  评论(0编辑  收藏  举报
世界上没有绝望得处境,只有对处境绝望得人