ロードの準備をしているビューに変数を設定しようとしています。これを設定するためのコードは次のとおりです。
NSInteger amountOfQuestions = [self.questions.text intValue];
Timer_ViewController *tvc = [[Timer_ViewController alloc] initWithNibName:@"Timer_ViewController" bundle:nil];
tvc.amountOfQuestions = &amountOfQuestions;
そしてここに@interfaceがありTimer_ViewController
ます:
@interface Timer_ViewController : UIViewController
{
NSInteger amountOfQuestions;
}
@property (nonatomic) NSInteger *amountOfQuestions;
@end
私はobjective-cに比較的慣れていないので、明らかな設計上の欠陥を指摘していただければ幸いです。