我如何将图像名称分配给字符串变量
我是 iPhone 新手。我需要的是我必须将图像名称(例如parrot.jpg)分配给 NSString 值。我需要使用此字符串变量在 imageview 中显示图像。
apporxmatly imageview.image = NSStringvarible;
其中 NSStringVArible 是图像名称。
我怎样才能做到这一点?
I am new to iPhone. What i need is i have to assign image name (eg.parrot.jpg) to NSString value.i need to display image in imageview using this string variable.
apporxmatly imageview.image = NSStringvarible;
where NSStringVArible is image name.
How can i done this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
imageview.image 需要图像而不是简单的字符串...所以您的行会给您警告并将终止应用程序
使用上面的行将帮助您解决问题...
快乐 iCODING...
You can use
as imageview.image needs image and not simple string... So you line will give you warning and will terminate the application
Use the above line will help you solve the problem...
hAPPY iCODING...