Criar um JPEG progressivo no iOS com ImageIO produz resultados em bloco no dispositivo

Eu estou tentando criar um JPEG progressivo de umUIImage objeto, este é o código que eu sou

NSMutableData *data = [NSMutableData data];

NSString *path = [NSHomeDirectory() stringByAppendingPathComponent: @"Library/Caches/test.jpg"];

CFURLRef url = CFURLCreateWithString(NULL, (CFStringRef)[NSString stringWithFormat:@"file://%@", path], NULL);
CGImageDestinationRef destination = CGImageDestinationCreateWithURL(url, kUTTypeJPEG, 1, NULL);
CFRelease(url);

NSDictionary *jfifProperties = [NSDictionary dictionaryWithObjectsAndKeys:
                                (__bridge id)kCFBooleanTrue, kCGImagePropertyJFIFIsProgressive,
                                nil];

NSDictionary *properties = [NSDictionary dictionaryWithObjectsAndKeys:
                            [NSNumber numberWithFloat:.7], kCGImageDestinationLossyCompressionQuality,
                            jfifProperties, kCGImagePropertyJFIFDictionary,
                            nil];

CGImageDestinationAddImage(destination, ((UIImage*)object).CGImage, (__bridge CFDictionaryRef)properties);
CGImageDestinationFinalize(destination);
CFRelease(destination);

Isso funciona muito bem ao executar no simulador, mas infelizmente produz resultados robustos / em blocos no dispositivo:

Alguma idéia do que está acontecendo? eu voltaria a usarUIImageJPEGRepresentation Como último recurso, eu realmente preciso de JPEGs progressivos.

questionAnswers(2)

yourAnswerToTheQuestion