我需要本地通知我的应用程序“使用我们的应用程序打开屏幕截图”,当使用ios中的其他应用程序(如“whatsapp”)拍摄屏幕截图时,以及通过按住“睡眠/唤醒”& “主页”按钮,我的应用程序应该有一个本地通知,用我的应用程序打开屏幕拍摄的图像,如Android中的“Stich& share”..是否有可能在Ios(我的应用程序可能在后台运行)?
答案 0 :(得分:0)
是的,您可以使用UIApplicationUserDidTakeScreenshot
let mainQueue = NSOperationQueue.mainQueue()
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationUserDidTakeScreenshot,
object: nil,
queue: mainQueue) { notification in
// executes after screenshot
}