如何在我们的应用程序外按住 "sleep/wake" 和 "home" 按钮获取屏幕截图时,我们的应用程序的本地通知为 "Open Image with our app"

how to get local notification of our app as "Open Image with our app" when taking screen shots outside our app holding "sleep/wake" & "home" button

在使用 ios 中的其他应用程序(例如 "whatsapp" 和按住 "sleep/wake" & "home" 按钮,我的应用程序应该有一个本地通知,用我的应用程序打开屏幕截图图像,比如 android 中的 "Stich&share".. 是否有可能 Ios(我的应用程序可能 运行 在后台运行)?

是的,你可以用 UIApplicationUserDidTakeScreenshot

let mainQueue = NSOperationQueue.mainQueue()
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationUserDidTakeScreenshot,
object: nil,
queue: mainQueue) { notification in
        // executes after screenshot
}