UIImageView 错误?
我想让图像出现。所以我添加了代码。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为这是 UIImageView 错误。请检查以下链接:
iPhone 错误:预期为 '='、','、';', 'asm' 或 '__attribute__' before ' 'foo'
如果您认为这是 UIImageView 错误的意思,请尝试以下代码:
如果您有一个名为“example.png”的 png 文件。在你的界面构建器中,如果你在视图controller.h中有UIImageView和该图像视图的出口。
假设您想以编程方式将 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.
Suppose you want to add the imageview programatically to your view means: