In a App images stored in Document Directory Folder,
I wanted Particular image display in Image view,
How that image Display in Image View from the Document Directory ?
|
In a App images stored in Document Directory Folder, I wanted Particular image display in Image view, How that image Display in Image View from the Document Directory ? |
|||
|
sample code:
TNQ |
||||
|
|
Here you can take UIImageView in your View and add it to the view and do the same like as follows:
Please let me know if you still need any help. |
|||
|
|
You can achieve it, By knowing the names of your images, so while you are storing your image you need to store some information of these images in database,(or some where you can use it), then fetch name of image from data source, and work as follows:
|
||||
|
|
you can display this image to uiimageview |
||||
|
|
[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"my_image"]]. Why won't this work for you? – August Lilleaas Jul 12 '11 at 11:34