我在不同的类中使用 App Delegate 对象。我想在整个项目中访问它。我在 Prefix.pch 文件中将此对象定义为
#define Appdelegate (AppDelegate *)[[UIApplication sharedApplication] delegate]
但问题是 Appdelegate 变量不访问 App 委托变量。它显示错误。
但如果我使用此代码工作正常
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
appDelegate.variablename;
我这样做是正确的还是有办法做我所做的?
提前致谢。