当前位置: 代码迷 >> Iphone >> iphone app 替图片添加边框
  详细解决方案

iphone app 替图片添加边框

热度:104   发布时间:2016-04-25 06:39:26.0
iphone app 为图片添加边框
头文件中#import <QuartzCore/QuartzCore.h>
当然Framework中需要有QuartzCore.framework

UIImageView* leftView = [[UIImageView alloc] init];
    leftView.contentMode = UIViewContentModeScaleAspectFit;
    leftView.tag = AlbumTableViewCell_LeftImageView;


/*加边框*/
    leftView.layer.masksToBounds=YES;
    leftView.layer.cornerRadius=2.0; //圆角弧度
    leftView.layer.borderWidth=1.0; //边框宽
    leftView.layer.borderColor=[[UIColor grayColor] CGColor];
  相关解决方案