5
Me gustaría capturar rápidamente una captura de pantalla para hacer un video de imágenes. Actualmente estoy usando el siguiente código, sin embargo, está un poco retrasado. ¿Existe un método mejor para tomar capturas de pantalla que sean más rápidas?iOS screenshot delay
CGSize imageSize = [[UIScreen mainScreen] bounds].size;
if (NULL != UIGraphicsBeginImageContextWithOptions)
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 1);
else
UIGraphicsBeginImageContext(imageSize);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *imageName = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();