gpt4 book ai didi

iphone - 使用#define 访问 App Delegate 对象不起作用

转载 作者:太空狗 更新时间:2023-10-30 03:35:22 25 4
gpt4 key购买 nike

我在不同的类中使用 App Delegate 对象。我想在整个项目中访问它。我在 Prefix.pch 文件中将此对象定义为

#define Appdelegate (AppDelegate *)[[UIApplication sharedApplication] delegate]

但问题是 Appdelegate 变量不访问 App delegate 变量。它显示错误。

但是如果我使用这段代码工作正常

AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
appDelegate.variablename;

我这样做是否正确,或者有什么方法可以做我所做的事情吗?

在此先感谢。

最佳答案

应该是:

#define Appdelegate ((AppDelegate *)[[UIApplication sharedApplication] delegate])
// ^----------------------parenthesis--------------------------^

关于iphone - 使用#define 访问 App Delegate 对象不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10448385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com