gpt4 book ai didi

iphone - 如何绘制矩形?

转载 作者:太空狗 更新时间:2023-10-30 03:17:00 25 4
gpt4 key购买 nike

我想在我的 viewController View 中绘制一个填充的矩形。我在 viewDidLoad 中写了下面的代码。但是没有变化。怎么了?

CGRect rectangle = CGRectMake(0, 100, 320, 100);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextFillRect(context, rectangle);

最佳答案

您不能在 viewController 中执行此操作。您需要扩展 View 并在“drawRect:”下添加代码

这将改变 View 的绘制逻辑。

-(void) drawRect:(CGRect)rect{    
[super drawRect:rect];
CGRect rectangle = CGRectMake(0, 100, 320, 100);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextFillRect(context, rectangle);
}

关于iphone - 如何绘制矩形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8195095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com