I’ve created my own custom Table View Cell comprising of a number, an image (thumbnail) and a description of something that is successfully being stored in a sqlite database using Core Data.
The image below will give a better idea of what I currently have in Interface Builder:

In the screen before, I am storing the filepath of an image taken with the camera and saving it to the database. I want to be able to load each UIImageView on the Table View Cells with the filepaths stored against each item.
I have tried the following which does not work:
UIImageView * thingPhotoView = (UIImageView *)
[cell viewWithTag:11];
NSString *path = thing.photo;
thingPhotoView.image = [UIImage imageWithContentsOfFile:path];
I’ve not used
ALAssetLibrarybut judging by the URL that is what you are using. Therefore you will need to useALAssetsLibraryto access the fileCheck the docs here ALAssetsLibrary
You probably want this method
Which might look like this