如何在iPhone中的imageview中显示图像

发布于 2024-10-08 15:43:15 字数 300 浏览 2 评论 0原文

我是 iPhone 新手,目前我的问题是

我在 6 个图像视图中显示了 6 个图像它没有在 imageview 中显示图像我认为 imageview 尺寸很大

我实现了这样的代码。

imageview1 = [[UIImageView alloc] init];
UIImage *img1 = [UIImage imageNamed:@"wolf.jpg"];
[imageview2 setImage:img1];

所以请向我发送此图像视图的正确代码。

提前谢谢你。

Iam new to iphone currently my problem is

i displayed 6 images in 6 image views It was not showing images in imageview I think the imageviews are in large size

i implement code like this.

imageview1 = [[UIImageView alloc] init];
UIImage *img1 = [UIImage imageNamed:@"wolf.jpg"];
[imageview2 setImage:img1];

so plz send me correct code for this imageview.

Thank u in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幽蝶幻影 2024-10-15 15:43:15
bgImage = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,480,300)];
bgImage.image = [UIImage imageNamed:@"Default.png"];
[self.view addSubview:bgImage];

另请检查您是否将图像文件添加到您的项目中,通过添加 - >现有文件

bgImage = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,480,300)];
bgImage.image = [UIImage imageNamed:@"Default.png"];
[self.view addSubview:bgImage];

Also check have you add image file to your project, by Add - > Existing File

泛滥成性 2024-10-15 15:43:15

首先,您要将图像 1 添加到 imageview 2 - 您确定要执行此操作吗?

其次,您需要将 imagview 添加到视图层次结构中,例如将其添加到 ViewControllers 视图中,如下所示: [[self view] addSubview:imageview1] (如果此代码位于查看控制器类)。

First of all, you're adding the image 1 to imageview 2 - are you sure you want to do this?

Secondly, you need to add the imagview to the view hierarchy, for example by adding it to a ViewControllers view, like this: [[self view] addSubview:imageview1] (If this code is situated within the View Controller class).

逐鹿 2024-10-15 15:43:15
imageview1 = [[UIImageView alloc] init];
imageview1.image = [UIImage imageNamed:@"wolf.jpg"];
imageview1 = [[UIImageView alloc] init];
imageview1.image = [UIImage imageNamed:@"wolf.jpg"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文