iOS NSNotificationCenter to check whether the app came from background to foreground

前端 未结 7 977
我在风中等你
我在风中等你 2020-12-07 00:41

I have a situation in which i have to intialize an object everytime when it comes from background to foreground and that should be using the NSNotificationCenter not with ap

7条回答
  •  长情又很酷
    2020-12-07 00:49

    Swift 3 and 4 version

    NotificationCenter.default.addObserver(forName: NSNotification.Name.UIApplicationWillEnterForeground, object: nil, queue: nil) { notification in
            ...
    }
    

提交回复
热议问题