gpt4 book ai didi

iOS NSNotificationCenter 检查app是否从后台转到前台

转载 作者:IT王子 更新时间:2023-10-29 08:22:04 24 4
gpt4 key购买 nike

我有一种情况,每次从后台到前台时我都必须初始化一个对象,并且应该使用 NSNotificationCenter 而不是 appdelegate 因为我正在构建一个静态库所以不会有 appdelegate 所以请帮助我同样。

最佳答案

您是否尝试过UIApplicationWillEnterForegroundNotification

应用程序还在调用 applicationWillEnterForeground: 之前不久发布一个 UIApplicationWillEnterForegroundNotification 通知,让感兴趣的对象有机会响应转换。

订阅通知:

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(yourUpdateMethodGoesHere:)
name:UIApplicationWillEnterForegroundNotification
object:nil];

实现一个需要调用的代码:

- (void) yourUpdateMethodGoesHere:(NSNotification *) note {
// code
}

不要忘记取消订阅:

[[NSNotificationCenter defaultCenter] removeObserver:self];

关于iOS NSNotificationCenter 检查app是否从后台转到前台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24910765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com