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.
REgards, Mirza
|
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. REgards, Mirza
| |||
|
feedback
|
|
To load image from somewhere on your drive use:
Or add image to the Xcode project and use:
After that add image to imageview:
| |||
feedback
|
|
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.
| |||
|
feedback
|
|
Drag and drop the images folder to your project which is opened in xcode, it will add the images to your app package. | |||
|
feedback
|
check the docs for imageWithContentsOfFile: | |||
|
feedback
|
|
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. | |||
|
feedback
|