Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么区别:
[[UIApplication sharedApplication] delegate]
和
UIApplicationDelegate
UIApplicationDelegate是一个协议定义,这意味着它是一组符合它的对象应该实现的方法。
[[UIApplication sharedApplication] delegate]是您必须要求当前正在运行的应用程序的应用程序委托的方式。该代表应符合UIApplicationDelegate.