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
733 Develop [ios] 최상위 ViewController 가져오기 hooni 2015.10.12 1198
732 Develop DDay Memo 1.9.4 소스코드 secret hooni 2015.10.03 0
731 Develop [ios] How to set up clang formatter hooni 2015.09.17 1473
730 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 760
729 Develop [git] 쉬운 버전관리 Git 설명 hooni 2015.08.18 960
728 Develop [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게 file hooni 2015.08.07 1079
727 Develop [ios] Objective-C Types & Storage Capacity hooni 2015.07.22 1257
726 Develop [ios] AES256 알고리즘을 이용해 데이터 암호화/복호화 방법 file hooni 2015.07.21 4191
725 Develop [ios] NSData to NSString (NSString to NSData) hooni 2015.07.21 733
724 Develop [ios] WWDC 2015 샘플 소스 코드 통합파일 hooni 2015.07.20 801
723 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 959
722 Develop [android] 코드에서 문자열로 Resource 가져오기 hooni 2015.07.09 4073
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 71 Next
/ 71