だから私はこれを関数のforループで取得しましたが、入力されることはありません、
for (Window *window in _app.windows) {
NSLog(@"test.");
}
私は初心者なので、どこでこれをデバッグし始めて、どこで問題が発生するかを確認できますか?
編集 これは別のクラスにあります
(ViewControllerで呼び出す関数(loadApp)にあります。たとえば、self.app = [MyClass loadApp];、上記のコードもViewControllerにあります。
Window *window = [[Window alloc] initWithName:title subtitle:subtitle number:number ident:ident type:type chapternumber:chapternumber icon:icon text:text img:img question:question answerFormat:answerFormat answerLength:answerLength tip1:tip1 tip2:tip2 tip3:tip3 tip1Answer:tip1Answer tip2Answer:tip2Answer tip3Answer:tip3Answer];
[app.windows addObject:window];
}
return app;