ARC を有効にし、アプリに ios 7 を使用しています。xib を使用せずにプログラミングを行っています。しかし、あるビュー コントローラーから別のビュー コントローラーに移動できません。クラスの .h ファイルに obj を作成しました。
.h ファイル @property(nonatomic,strong)CountriesViewController *countryViewController;
ボタン アクションの .m ファイル。
countryViewController = [[CountriesViewController alloc] init];
[self.navigationController pushViewController:countryViewController animated:YES];