我如何将图像名称分配给字符串变量

发布于 2024-09-17 20:09:41 字数 206 浏览 4 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(3

眼泪也成诗 2024-09-24 20:09:41
NSString *imageName = @"parrot.jpg";

UIImageView *view = [[UIImageView alloc]initWithImage:[UIImage imageNamed:imageName]];
NSString *imageName = @"parrot.jpg";

UIImageView *view = [[UIImageView alloc]initWithImage:[UIImage imageNamed:imageName]];
森林散布 2024-09-24 20:09:41
youreImageView.image = [UIImage imageNamed:@"parrot.jpg"];
youreImageView.image = [UIImage imageNamed:@"parrot.jpg"];
他不在意 2024-09-24 20:09:41

您可以使用

imageview.image = [UIImage imageNamed:NSStringvarible];

imageview.image 需要图像而不是简单的字符串...所以您的行会给您警告并将终止应用程序
使用上面的行将帮助您解决问题...

快乐 iCODING...

You can use

imageview.image = [UIImage imageNamed:NSStringvarible];

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...

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