应用程序委托之间的区别

发布于 2024-08-03 08:24:42 字数 142 浏览 6 评论 0原文

有什么区别:

[[UIApplication sharedApplication] delegate]

UIApplicationDelegate

What is the difference between:

[[UIApplication sharedApplication] delegate]

and

UIApplicationDelegate

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

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

发布评论

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

评论(1

寻梦旅人 2024-08-10 08:24:42

UIApplicationDelegate 是一个协议定义,这意味着它是符合该协议的对象应该实现的一组方法。

[[UIApplication sharedApplication] delegate] 是您必须请求当前正在运行的应用程序的应用程序委托的方式。该委托应符合 UIApplicationDelegate

UIApplicationDelegate is a protocol definition, which means it's a set of methods an object that conforms to it should implement.

[[UIApplication sharedApplication] delegate] is the way you have to ask for application delegate of your currently running application. That delegate should conform to UIApplicationDelegate.

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