Hi All
I have a SQLite database containing several items of data and in there i have included a column with the file names of the images i want to use in my app.
I know how to pull this data out but i dont know the correct syntax to use to set that filename to the uiimage.
Here is an example of what i thought it would look like.
UIImage *animalImage = [[UIImage imageNamed:[database imagefilename];
self.childController.stepImage.image = animalImage;