所以我在一个函数中得到了这个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;