728x90
//img에 현재 화면이 캡쳐 된다.
UIImage *img;
UIGraphicsBeginImageContext(self.view.frame.size);
GContextRef context = UIGraphicsGetCurrentContext();
[self.view.layer renderInContext:context];
img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
버튼을 누루면 화면이 캡쳐되는 간단한 샘플입니다.
728x90
'Developer > iOS' 카테고리의 다른 글
[iPhone iPad] Gesture 인식 샘플 (1) | 2011.05.24 |
---|---|
NSNumber 활용법 (2) | 2011.05.24 |
[IPhone] [APNS] java 로 push notification server 및 클라이언트 구현하기(아이폰 푸시 서버) (1) | 2011.04.05 |
[IPhone] String -> MD5(암호) 변환 샘플 (3) | 2011.03.21 |
[IPhone]코드로 버튼 추가하기. (1) | 2011.03.21 |