0

在我的应用程序中,我的根视图控制器是 TabBar 控制器之一中的 TabBar 我使用表格视图我想在按下到单元格时推送视图控制器但是当我使用

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
  TripDetailView * TripDetailViewObjec = [[TripDetailView alloc]init];
    [self.navigationController pushViewController:TripDetailViewObjec animated:YES];
}

不做任何事情,因为Self.navigation=null

我尝试在 AppDelegate 中创建 UINavigationController

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    AppDelegate * ApplicationDelegate =[[UIApplication sharedApplication]delegate];
        [[ApplicationDelegate Nav] pushViewController:TripDetailViewObjec animated:YES];
}

我的 AppDelegate

@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
    WeekendTrips * WeekendTripsObject ; 
    UINavigationController * Nav;
}

@property (strong, nonatomic) UIWindow *window;
@property (strong,nonatomic)   UINavigationController * Nav;
@end

@implementation AppDelegate
@synthesize Nav;

@synthesize window = _window;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
WeekendTripsObject = [[WeekendTrips alloc]init];

    Nav=[[UINavigationController alloc]initWithRootViewController:WeekendTripsObject];
   [self.view addSubView Nav.view];
    return YES;
}

这不起作用我能做什么?提前致谢

4

2 回答 2

1

您需要UINavigationController在您的 appdelegate 中创建一个实例。您需要在标签栏控制器的视图中添加导航栏。

如果您在 xib 中有标签栏,请将UINavigationController对象从库窗口拖到标签栏的树视图中。将导航控制器放在标签栏控制器内,然后将现有视图控制器拖到导航控制器内。

如果您以编程方式创建选项卡栏,则非常简单:

喜欢:

UIViewController *viewController1 = [[UIViewController alloc] initWithNibName:@"yournib1" bundle:nil];
UINavigationController *navigationcontroller = [[UINavigationController alloc] initWithRootViewController:viewController1];

UIViewController *viewController2 = [[UIViewController alloc] initWithNibName:@"yournib2" bundle:nil];

self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:navigationcontroller, viewController2, nil];

请参考本教程

于 2012-11-07T13:47:22.723 回答
0

您需要使用 anUINaviatigationController作为应用程序的根视图控制器,然后将第一个表视图添加为导航控制器的导航根视图。然后,您可以使用 .push 推送其他表视图[self.navigationController pushViewController:animated:]

于 2012-11-07T13:47:26.120 回答