Developer/iOS

[IPhone] 현재화면 캡쳐하기

블로blow 2011. 5. 24. 07:36
728x90

//img에 현재 화면이 캡쳐 된다.

UIImage *img;

UIGraphicsBeginImageContext(self.view.frame.size);

GContextRef context = UIGraphicsGetCurrentContext();

[self.view.layer renderInContext:context];

img = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

버튼을 누루면 화면이 캡쳐되는 간단한 샘플입니다.

 

728x90