对主项目和子项目使用公共变量,如 "Appdelegate"
Use common varible for main project and sub project like "Appdelegate"
我有 2 个项目,一个是父项目 abc.xcodeproj,一个是子项目 def.xcodeproj
我需要从 def.xcodeproj 中的 abc.xcodeproj 项目访问我的 appdelegate 变量。
任何变量或建议??????
假设您使用这两个项目只创建一个应用程序(假设其中一个是您的应用程序中使用的库项目),您可以从库项目的主项目中获取 AppDelegate
使用
[[UIApplication sharedApplication] delegate]
如果它们是不同应用的不同项目,您无法从其他应用
获取AppDelegate
我有 2 个项目,一个是父项目 abc.xcodeproj,一个是子项目 def.xcodeproj
我需要从 def.xcodeproj 中的 abc.xcodeproj 项目访问我的 appdelegate 变量。
任何变量或建议??????
假设您使用这两个项目只创建一个应用程序(假设其中一个是您的应用程序中使用的库项目),您可以从库项目的主项目中获取 AppDelegate
使用
[[UIApplication sharedApplication] delegate]
如果它们是不同应用的不同项目,您无法从其他应用
获取AppDelegate