gpt4 book ai didi

ios - 如何使用 objective-c 在iphone模拟器中显示图像

转载 作者:行者123 更新时间:2023-11-28 17:58:09 25 4
gpt4 key购买 nike

我正在尝试使用 objective-c 以编程方式在 iphone 模拟器中显示图像,我正在使用以下代码,但它没有在模拟器中显示任何内容

imageview = [[UIImageView alloc] init];
UIImage *myimg = [UIImage imageNamed:@"A1.jpg"];
imageview.image=myimg;

最佳答案

您可以使用此代码

imageview = [[UIImageView alloc] init];
UIImage *myimg = [UIImage imageNamed:@"A1.jpg"];
imageview.image=myimg;
imageview.frame = CGRectMake(50, 50, 150, 150); // pass your frame here
[self.view addSubview:imageview];

关于ios - 如何使用 objective-c 在iphone模拟器中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22707383/

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