如何用红色绘制 UIImageView 框架
Posted
技术标签:
【中文标题】如何用红色绘制 UIImageView 框架【英文标题】:How to Draw UIImageView Frame in Red 【发布时间】:2013-01-19 10:41:42 【问题描述】:我希望能够将UIImageView
的框架绘制为红色,以便在旋转和缩放它时可以看到它。设置图层边框宽度和颜色不是我需要的,因为如果我旋转它,它也会旋转图层(而UIImageView
框架不会旋转)。这甚至可能吗?任何人都知道如何做到这一点?
【问题讨论】:
【参考方案1】:将其放置在具有红色背景色的较大 UIView 上。
UIView *redBackgroundView = [[UIView alloc] initWithFrame: … /* a bigger frame than imageView*/)];
[redBackgroundView: addSubview: imageview];
[self.view addSubview: redBackgroundView];
【讨论】:
【参考方案2】:您可以使用 UIImageView 对象的 backgroundColor 属性将 UIImageView 的背景颜色设置为红色。
【讨论】:
【参考方案3】:添加框架#import "QuartzCore/QuartzCore.h"
UIImageView *imgReport = [[UIImageView alloc] initWithFrame:CGRectMake(50, 20,250,150)] ;
imgReport.backgroundColor = [UIColor yellowColor];
imgReport.layer.cornerRadius = 7.0; // change cornerRadius as per you requriment
imgReport.layer.masksToBounds = YES;
imgReport.layer.borderColor = [UIColor redColor].CGColor;
imgReport.layer.borderWidth = 5.0;
[self.view addSubview:imgReport];
【讨论】:
以上是关于如何用红色绘制 UIImageView 框架的主要内容,如果未能解决你的问题,请参考以下文章
如何用DIB绘制8位的灰度图像?绘出的灰度图像为啥出现蓝色和红色?
使用 pangesture 在 UIImageView 图像上绘制贝塞尔路径