Convert the data returned by scoopet (stored in hexadecimal numbers) into UIImage
PHPz2017-05-02 09:33:52
[UIImage imageWithData:[data subdataWithRange:NSMakeRange(8, data.length - 8)]];
阿神2017-05-02 09:33:52
Convert to NSData and use [UIImage imageWithData:<#(nonnull NSData *)#>];
There is a lot of information online