UIImageView 错误?

发布于 2024-12-12 01:15:32 字数 263 浏览 0 评论 0原文

我想让图像出现。所以我添加了代码。

myImage.image = [UIImage imageNamed:@"myImage.png"];

我用我的背景名称代替了它。但当我尝试构建时,我会收到此错误。

: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'Screen'

你能帮我解决这个错误吗?

I would like to make a image appear. So I added the code.

myImage.image = [UIImage imageNamed:@"myImage.png"];

I substituded it with my backgrounds name. but when ever I try to build I get this error.

: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'Screen'

could you help me with this error?

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

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

发布评论

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

评论(1

咋地 2024-12-19 01:15:32

我不认为这是 UIImageView 错误。请检查以下链接:
iPhone 错误:预期为 '='、','、';', 'asm' 或 '__attribute__' before ' 'foo'

如果您认为这是 UIImageView 错误的意思,请尝试以下代码:
如果您有一个名为“example.png”的 png 文件。在你的界面构建器中,如果你在视图controller.h中有UIImageView和该图像视图的出口。

UIImage * img = [UIImage imageNamed:@"myImage.png"];
 cell.myimageView.image=img;

假设您想以编程方式将 imageview 添加到您的视图中,则意味着:

UIImage * img = [UIImage imageNamed:@"myImage.png"];

UIImageView *imageView = [[UIImageView alloc] initWithImage:img];
[self.view addSubview:imageView];

I dont think it is a UIImageView error. Please check the below Link:
iphone error: expected '=', ',', ';', 'asm' or '__attribute__' before ' 'foo'

If you think it is a UIImageView error means, please try the below code:
If you have a png file named as "example.png". In your interface builder if you have UIImageView and outlet for that imageview in the view controller.h.

UIImage * img = [UIImage imageNamed:@"myImage.png"];
 cell.myimageView.image=img;

Suppose you want to add the imageview programatically to your view means:

UIImage * img = [UIImage imageNamed:@"myImage.png"];

UIImageView *imageView = [[UIImageView alloc] initWithImage:img];
[self.view addSubview:imageView];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文