0
thisチュートリアルを使用して、Obj-CのiPhoneプログラミングのための方法を見つけようとしています。 最後に、どのメニューポイントを選択したら、SubViewOneが表示されましたか。SubViewTwoControllerが宣言されていません(obj-c)
私はこれを変更すると、メニューのポイントをタップしたときに、エンドSubViewTwo(.xib)に表示されます「サブビュー二つの」
だから私は
SubViewOneController *subViewOneController = [[SubViewOneController alloc] init];
subViewOneController.title = @"Subview One";
[views addObject:[NSDictionary dictionaryWithObjectsAndKeys:
@"Subview One", @"title",
subViewOneController, @"controller",
nil]];
[subViewOneController release];
の第二の反復を変えたんでした何
私にエラー 「宣言されていないSubViewTwoController(最初にこの関数で使用)
を与えるものsubViewTwoController = [[SubViewTwoController alloc] init];
subViewTwoController.title = @"Subview Two";
[views addObject:[NSDictionary dictionaryWithObjectsAndKeys:
@"Subview Two", @"title",
subViewTwoController, @"controller",
nil]];
[subViewOneController release];
へ
私はこの言語にはかなり新しいので、簡単な説明でいくつかの提案を残すなら、本当に感謝します!
ありがとうございます!