NSArray *arr = [dics objectForKey:@"img"];
unsigned c = arr.count;
uint8_t *bytes = malloc(sizeof(*bytes) * c);
unsigned i;
for (i = 0; i < c; i++) {
NSString *str = [arr objectAtIndex:i];
int bytr = [str intValue];
bytes[i] = bytr;
}
NSData *data = [NSData dataWithBytesNoCopy:bytes length:c freeWhenDone:YES];
UIImage *image = [UIImage imageWithData:data];