I have a Json feed from my MySQL database and this is working great for name and other details but I also have a blob column for images that I want to connect to a UIImage in my storyboard but am unsure how to take the blob data in the Json feed and decode back into UIImage. I think the data is a seen as an String at the moment.
I don't want to use any library's so would a pointer to a server image location (aka a URL) in the database be better option than blob ? I guess so ? If so how do I display that from Json feed?
Thanks