Contents

조회 수 1559 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

# Objective-C

// Objective-C
NSOperationQueue *mainQueue = [NSOperationQueue mainQueue];
[[NSNotificationCenter defaultCenter]
    addObserverForName:UIApplicationUserDidTakeScreenshotNotification
    object:nil
    queue:mainQueue
    usingBlock:^(NSNotification *notification) {
        // 스크린캡쳐후 처리
    }];

# Swift

// Swift
let mainQueue = NSOperationQueue.mainQueue()
NSNotificationCenter.defaultCenter().addObserverForName(
    UIApplicationUserDidTakeScreenshotNotification,
    object: nil,
    queue: mainQueue)
{
    notification in
    // 스크린캡쳐후 처리
}


?

  1. [ios] 소소한 팁 (Rect,Point,Path,URL 등)

  2. [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기

  3. [ios] 스터디 자료 (from 종길M)

  4. [iOS] 시뮬레이터에 푸시 알림을 보내는 방법

  5. [ios] 아이폰 GPS 사용하기

  6. [ios] 아이폰 개발 따라하기 ㅋㅋㅋ

  7. [ios] 아이폰 개발 총정리..

  8. [ios] 아이폰 앱 이름 및 버전 정보

  9. [ios] 아이폰에서 진동(Vibrate) 기능 추가하기

  10. [ios] 아이폰용 앱 오픈 소스들

  11. [ios] 애플 앱스토어 IDFA 리뷰 정책 변경 안내

  12. [ios] 앱 딜리게이트 얻어오기. (AppDelegate)

Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 98 Next
/ 98