I am recieving array of bytes from JSON webservice and it is a jpg image. i want to convert this byte array into image. on server side these bytes are correct and can be converted into image. But in Xcod i am unable to convert it into image. I have tried following Links but unable to convert bytes into image
How to get UIImage from Byte…at IPhone code
You can get the bytes in NSData and use the NSData to get the image in an UIImage object.
Use initWithData method.
Hope this helps