Tôi đang hiển thị một chế độ xem phương thức là một UITableViewController
lớp. Vì một số lý do, nó sẽ không hiển thị thanh điều hướng khi tôi hiển thị nó. Đây là mã của tôi:
SettingsCreateAccount *detailViewController = [[SettingsCreateAccount alloc] initWithStyle:UITableViewStyleGrouped];
detailViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
detailViewController.navigationController.navigationBarHidden = NO;
[self.navigationController presentModalViewController:detailViewController animated:YES];
detailViewController = nil;
[detailViewController release];
Tôi nghĩ rằng nó đã được hiển thị theo mặc định? Nếu nó hữu ích, tôi đang gọi cái này từ một lớp khác cũng UITableViewController
được quản lý bởi a UINavigationController
. Ý tưởng?