gpt4 book ai didi

ios - UIImage 不加载图像

转载 作者:行者123 更新时间:2023-11-29 04:06:56 25 4
gpt4 key购买 nike

以下代码工作正常..

scrollView1 = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 200, 1024, 200)];
scrollView1.contentSize = CGSizeMake(2048, 200);
scrollView1.showsHorizontalScrollIndicator = YES;
scrollView1.scrollEnabled = YES;
scrollView1.userInteractionEnabled = YES;
scrollView1.backgroundColor = [[UIColor alloc] initWithRed:0.5 green:0.8 blue:0.5 alpha:1];
[self.view addSubview:scrollView1];

但是这个不是......

scrollView1 = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 200, 1024, 200)];
scrollView1.contentSize = CGSizeMake(2048, 200);
scrollView1.showsHorizontalScrollIndicator = YES;
scrollView1.scrollEnabled = YES;
scrollView1.userInteractionEnabled = YES;
scrollView1.backgroundColor = [[UIColor alloc] initWithPatternImage:[[UIImage alloc] initWithContentsOfFile:@"image.jpg"]];
[self.view addSubview:scrollView1];

UIImage 可能出了什么问题?在我的完整项目中 UIImage 无法在任何地方工作......

在我的调试器中,即使在内存分配之后,所有 uiimage 变量也显示内存地址 0*000000000

注意::ScrollView1 工作正常,“image.jpg”是正确的参数。

最佳答案

[UIImage imageNamed:@"image.jpg"];

尝试这样。这会对你有帮助。

已编辑:

NSString *path = [[NSBundle mainBundle] pathForResource:@"image" ofType:@"jpg"];
scrollView1.backgroundColor = [[UIColor alloc] initWithPatternImage:[[UIImage alloc] initWithContentsOfFile:path]];

关于ios - UIImage 不加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15038225/

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