テーブルビューを含む1つのビューがあり、行をタッチすると、他のビューに移動します。すべて問題ありませんが、ボタンやラベルなどは表示されませんでした。
他のビューへのナビゲーションには、次のコードを使用します。
GenderViewController *myController = [[GenderViewController alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:myController animated:YES];
[myController release];
どこで問題が発生する可能性がありますか?
ありがとうございました!