iPhone 密码入口点

发布于 2024-10-05 14:04:23 字数 110 浏览 4 评论 0原文

我已经为我的 iPhone 应用程序编写了一个密码系统,目前它在 -applicationDidFinishLaunching 方法中完美运行,但我想知道我必须重写哪些其他方法来解决睡眠和多任务处理等问题?

I've written a passcode system for my iPhone app, and currently have it working perfectly in the -applicationDidFinishLaunching method, but I was wondering what are the other methods I have to override to account for things like sleep, and multitasking?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿童谣 2024-10-12 14:04:24

对于应用程序委托,

- (void)applicationDidBecomeActive:(UIApplication *)application;

- (void)applicationWillEnterForeground:(UIApplication *)application;

可能还想使用:

- (void)applicationSignificantTimeChange:(UIApplication *)application;

不过,我认为这涵盖了它。

For the app delegate, probably

- (void)applicationDidBecomeActive:(UIApplication *)application;

and

- (void)applicationWillEnterForeground:(UIApplication *)application;

You might also want to use:

- (void)applicationSignificantTimeChange:(UIApplication *)application;

I think that covers it, though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文