- (UIImage *)captureScreenInRect {
UIGraphicsBeginImageContextWithOptions(layView.bounds.size, layView.opaque, 0.0);
[layView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
'아이폰' 카테고리의 다른 글
[iphone] webview 띄우기 (0) | 2013.01.19 |
---|---|
[iphone] 버젼 체크 하기 (0) | 2013.01.19 |
[iphone] 버튼에 이미지 셋팅 하는 방법 (0) | 2013.01.19 |
[iphone] int형 변수를 string형 변수로, string형 변수를 int형 변수로 (0) | 2013.01.18 |
[iphone] tableview 터치시 체크표시하기 (0) | 2013.01.18 |