+(AppDelegate*)instance{return [UIApplication sharedApplication].delegate;
它正在AppDelegate的中间,我用作模板。如果有人有时间,请你解释它的界限或用处。
谢谢 帕特里克
答案 0 :(得分:2)
这是一种实用方法:
当需要将您的应用程序代理的实例已经转换为正确的类时,您将调用:
[AppDelegate instance]
而不是:
AppDelegate* instance = (AppDelegate*)[UIApplication sharedApplication].delegate;