gpt4 book ai didi

ios - UIImage 与 drawInRect

转载 作者:行者123 更新时间:2023-11-29 04:59:47 24 4
gpt4 key购买 nike

我有一个应用程序[基于窗口],我需要在屏幕上“绘制”一些图像,[我正在遵循一个实现一些自定义图表绘图的示例项目,这样做,但它不使用 UIImage View ,只是UI图像)

我正在使用

- (void)viewDidLoad
{
[super viewDidLoad];
self.view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
self.view.backgroundColor = [UIColor grayColor];

UILabel *labelA = [[[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 20)]autorelease];

[self.view addSubview: labelA];

labelA.text = @"mk ss9";

[MyClassic pongalo];


int i = [MyClassic numero];
NSLog(@"el nuro :%d",i);

[MyClassic suma1:343];



int y = [MyClassic sumatoria:11 :12];
NSLog(@"suma = %d",y);

[self dicto];


UIImage *img = [UIImage imageNamed:@"line.png"];
[img drawInRect: CGRectMake(12, 12, 12, 200) ];

但图像未显示,标签显示正常

我也在控制台中收到此错误:

  CGContextSaveGState: invalid context 0x0
CGContextSetBlendMode: invalid context 0x0
CGContextSetAlpha: invalid context 0x0
CGContextTranslateCTM: invalid context 0x0
CGContextScaleCTM: invalid context 0x0
CGContextDrawImage: invalid context 0x0
CGContextRestoreGState: invalid context 0x0

如何解决这个问题?

非常感谢!

最佳答案

在上面的示例中,似乎使用了 CoreGraphics 并在 drawRect 函数中的 CGContextRef 处进行绘制。也许这对您有帮助: How to draw an UIImage or directly in -drawRect:?

关于ios - UIImage 与 drawInRect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7239087/

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