在我的第一堂课(Secen1ViewController.h)中,我有财产:
@property (nonatomic) BOOL myBoolean;
在我的第二堂课(Secen2ViewController.m)中,我导入了 Secen1ViewController.h 并声明了属性:
@property (strong) Secen1ViewController *parent;
我还在 ViewDidLoad 中初始化了属性:
_parent = [[Secen1ViewController alloc] init];
然后当按下按钮时我设置属性:
self.parent.myBoolean=YES;
没有显示错误,但 Scene1 中的 myBoolean 未设置为 yes。