SettingsViewController

SettingsViewController

我有一个Xcode项目,在这里我必须将数据从SettingsViewController传输到ViewController,问题是我必须在SettingsViewController.h中实现ViewController,因为它被推出了-但要将数据从SettingsViewController发送到ViewController,必须在SettingsViewcontroller中实现ViewController,这也就是在程序被卡住时-不可能有循环的#import引用,不是吗?

最佳答案

然后在所有.h文件中使用前向声明,然后将文件导入.m文件中

检查这个问题
Objective-C: Forward Class Declaration

前向声明如下所示:

@class SettingsViewController;

关于iphone - 通函#import引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12994286/

10-11 15:35