码迷,mamicode.com
首页 > 移动开发 > 详细

ios 按钮或图片框圆角处理

时间:2014-07-14 22:13:29      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   文件   os   width   

导入库头文件(重点)

#import <QuartzCore/QuartzCore.h>
 
//圆角设置
imageView.layer.cornerRadius = 6;
imageView.layer.masksToBounds = YES;
 
//边框宽度及颜色设置
[imageView.layer setBorderWidth:2];
[imageView.layer setBorderColor:[UIColor blueColor]];  //设置边框为蓝色
 
//自动适应,保持图片宽高比
imageView.contentMode = UIViewContentModeScaleAspectFit;

ios 按钮或图片框圆角处理,布布扣,bubuko.com

ios 按钮或图片框圆角处理

标签:des   style   color   文件   os   width   

原文地址:http://www.cnblogs.com/Vzhen/p/3842490.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!