I'm having a little dilemma with an iphone project.
I'm getting some JSON data from a webservice. I can deserialize it into a dictionary OK. One of the dictionary values is a binary (a picture), but my JSON library deserializes it as an NSArray of NSDecimalNumbers!
How do I convert this NSArray of NSDecimalNumbers to an NSData object, so that I can successfully generate an image from it, by using [UIImage imageWithData:myNSData]?