在UIImageView中显示本地图片
如何在 UIImageView 组件中显示来自硬盘的图像?
我有一个名为“images”的本地文件夹,想通过亲戚访问它 路径,因为我想将图像与应用程序打包。
How do I display an image in the UIImageView component from the hard drive?
I have a local folder called "images" and would like to access it via a relative
path, since I want to package the images with the app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只要图像位于资源文件夹中,您就不需要提供任何路径。
您可以使用它在 imageView 中显示该图像。
You dont need to give any path as long as the image is in your resources folder.
You can display that image in the imageView using this.
检查文档 imageWithContentsOfFile:
check the docs for imageWithContentsOfFile:
硬盘中的图像是什么意思?您是说您已将图像保存在 iPhone 应用程序的捆绑包中。如果是这样,那么您可以像这样制作这些图像的数组......
然后可以通过此访问您的图像大批;
或者,如果您只想显示捆绑包中的单个图像,您可以这样做,
这会对您有所帮助。
What do you mean by images in hard drive.Are you saying that you have kept your images in your bundle in iphone app.If so then you can make array of those images like this....
And then can access your images by this array;
Or if you simply want to show a single image from the bundle you can do this way
This will help you.
要从驱动器上的某个位置加载图像,请使用:
或将图像添加到 Xcode 项目并使用:
然后将图像添加到 imageview:
To load image from somewhere on your drive use:
Or add image to the Xcode project and use:
After that add image to imageview: