Contents

?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

# 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
    // 스크린캡쳐후 처리
}


?

List of Articles
No. Category Subject Author Date Views
529 Develop 프로그래밍 소스 관련 사이트.. hooni 2013.04.23 16530
528 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 16443
527 Develop [php] php+db 연동(odbc, mssql, mysql, sybase) 3 hooni 2013.04.23 8572
526 Develop [asp] 폼 메일 소스 file hooni 2013.04.23 7400
525 Develop [asp] 폼메일 예제와 메일 포워딩 프로그램 file hooni 2013.04.23 7158
524 Develop [c] 프로세스 검사하기 hooni 2013.04.23 8049
523 Develop [c] 네트워크 관련 프로그래밍 (포트스캔 탐지 샘플) file hooni 2013.04.23 7218
522 Develop [c] SetTimer() & KillTimer() & 일회용 Timer hooni 2013.04.23 9243
521 Develop [c++] 인라인 함수에 대한 설명 hooni 2013.04.23 7130
520 Develop [c++] 인라인 함수 설명과 예제.. file hooni 2013.04.23 6671
519 Develop [c] 게임 AI FSM 테스트 샘플 소스.. 꽤 괜찮은 소스.. file hooni 2013.04.23 7400
518 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 7684
Board Pagination Prev 1 ... 22 23 24 25 26 27 28 29 30 31 ... 71 Next
/ 71