我可以在目标c中的.c文件中创建appdelegate对象吗

发布于 2024-11-26 16:29:37 字数 73 浏览 1 评论 0原文

我想在我的 .c 文件中创建委托文件的对象,并尝试在那里访问 appDelegate 文件图像字符串..我可以吗?还是我走错了???

I want to create object of delegate file in my .c file and try to access appDelegate file image string there.. can i?? Or i am going wrong???

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

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

发布评论

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

评论(2

若沐 2024-12-03 16:29:37
#import "AppDelegate.h"

- (void)someMethod
{
   AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
   imageString = appDelegate.imageStringName;
}
#import "AppDelegate.h"

- (void)someMethod
{
   AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
   imageString = appDelegate.imageStringName;
}
无人接听 2024-12-03 16:29:37

虽然您可以这样做,但您需要告诉 Xcode 您的 .c 文件应该编译为 Objective-C 文件,因为您已经编写了一些 Objective-C 特定代码在其中。您应该将该文件重命名为 .m:这样更容易,并且将来它包含 ObjC 代码会更加明显。

While you can do that, you then need to tell Xcode that your .c file should be compiled as an Objective-C file because you have written some Objective-C specific code in it. You should rename the file to .m: it's easier and in the future it'll be more obvious that it contains ObjC code.

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