//img에 현재 화면이 캡쳐 된다. UIImage *img; UIGraphicsBeginImageContext(self.view.frame.size); GContextRef context = UIGraphicsGetCurrentContext(); [self.view.layer renderInContext:context]; img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); 버튼을 누루면 화면이 캡쳐되는 간단한 샘플입니다.