我可以在目标c中的.c文件中创建appdelegate对象吗
我想在我的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然您可以这样做,但您需要告诉 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.