Я пытаюсь использовать pushViewController: animated: с UIViewController.Я поместил его в UINavigationController с initWithRoot, и он все еще не работает.
Вот мой код?Я что-то не так делаю?
CloudappSettingsViewController *cloud = [[CloudappSettingsViewController alloc] initWithNibName:nil bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:cloud];
[self pushViewController:nav animated:YES];
[cloud release];
Он всегда вылетает, когда подходит к [self pushViewController:nav animated:YES];
Есть идеи?Спасибо