I am opening setting from my application viewcontroller like this
if let url = NSURL(string: UIApplicationOpenSettingsURLString) as URL? {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
And after turning notifications on for my app, when I tap on back button on status bar (I repeat status bar that is on top with sim and battery information) to comeback to my app. Now I want to know that how my app will know that user is back.
willappear
and didappear
is not called.