반응형
다음은 스크린 캡쳐 이벤트 처리 방법이다.
말 그대로 이벤트만 받는다. 막는건 안된다.
// Objective C
NSOperationQueue *mainQueue = [NSOperationQueue mainQueue];
[[NSNotificationCenter defaultCenter] addObserverForName:UIApplicationUserDidTakeScreenshotNotification
object:nil
queue:mainQueue
usingBlock:^(NSNotification *note) {
// executes after screenshot
}];
// Swift
NotificationCenter.default.addObserver(
forName: UIApplication.userDidTakeScreenshotNotification,
object: nil,
queue: .main) { notification in
//executes after screenshot
}
방법 1
func detectScreenShot(action: @escaping () -> ()) {
let mainQueue = OperationQueue.main
NotificationCenter.default.addObserver(forName: UIApplication.userDidTakeScreenshotNotification, object: nil, queue: mainQueue) { notification in
// executes after screenshot
action()
}
}
방법 2
func detectScreenShot(action: () -> ()) {
let mainQueue = NSOperationQueue.mainQueue()
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationUserDidTakeScreenshotNotification, object: nil, queue: mainQueue) { notification in
// executes after screenshot
action()
}
}
방법1, 2 실행방법
detectScreenShot { () -> () in
print("User took a screen shot")
}
반응형
'개발 > iOS' 카테고리의 다른 글
경과 시간 구하기 (0) | 2021.03.18 |
---|---|
스크린 안꺼지게 하기 (0) | 2021.03.18 |
Universal Link (4/4) - 웹서버 환경 검증 (0) | 2021.03.16 |
Universal Link (3/4) - 웹서버 환경 설정 (0) | 2021.03.16 |
Universal Link (2/4) - 네이티브 링크 수신 (0) | 2021.03.16 |