0

アプリのデリゲートで以下のコードを使用して、2 つの NavBar コントローラーを UITabbarController に埋め込もうとしています。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    [window makeKeyAndVisible];

    // Configure and show the window.

    FirstViewController *firstController = [[FirstViewController alloc] initWithNibName:nil bundle:NULL];
    self.firstNav = [[UINavigationController alloc] initWithRootViewController:firstController];
    SecondTableViewController *anotherOne = [[SecondTableViewController alloc] initWithNibName:nil bundle:NULL];
    self.anotherNav = [[UINavigationController alloc] initWithRootViewController:anotherOne];

    NSArray *twoViewControllers = [[NSArray alloc]initWithObjects:self.anotherNav,self.firstNav, nil];

    self.tabBarController = [[UITabBarController alloc]init];
    [self.tabBarController setViewControllers:twoViewControllers];
    [window addSubview:self.tabBarController.view];
    [window setRootViewController:tabBarController];
    return YES;
}   

2 つのタブは名前とともに正常に表示されますが、最初のタブのみを選択できます。2 番目のタブは常にグレー表示され、タッチ イベントに応答しません。navController の割り当てを Tabbar (配列 twoViewControllers 内) に逆にすると、各ビューが正常に表示されます (最初のタブ内)。

アプリ デリゲートは UITabbarDelegate と uiTabBarControllerDelegate を実装しません。ストーリーボードは使いません。

2 番目のタブが常にグレー表示されている明確な理由はありますか?

サンプル コード: Apple の Locations チュートリアル (ARC を使用) はこちら

次に変更します:

  • (void)applicationDidFinishLaunching:(UIApplication *)アプリケーション{}

為に

- (void)applicationDidFinishLaunching:(UIApplication *)application {

    // Configure and show the window.

    RootViewController *cont1 = [[RootViewController alloc] initWithNibName:nil bundle:NULL];
    RootViewController *cont2 = [[RootViewController alloc] initWithNibName:nil bundle:NULL];

    NSManagedObjectContext *context = [self managedObjectContext];
    if (!context) {
        // Handle the error.
    }
    cont1.managedObjectContext = context;
    cont2.managedObjectContext = context;

    UINavigationController *aNav1 = [[UINavigationController alloc] initWithRootViewController:cont1];
    UINavigationController *aNav2 = [[UINavigationController alloc] initWithRootViewController:cont2];

    NSArray *twoViewControllers = [[NSArray alloc]initWithObjects:aNav1,aNav2, nil];

    self.tabBarController = [[UITabBarController alloc]init];
    [self.tabBarController setViewControllers:twoViewControllers];

    //[window addSubview:[tabBarController view]];
    [window setRootViewController:tabBarController];

    [window makeKeyAndVisible];

}

@interface LocationAppDelegate ...@end を置き換えます

@interface LocationsAppDelegate : NSObject <UIApplicationDelegate> {

    UIWindow *window;

    UITabBarController *tabBarController;

    NSPersistentStoreCoordinator *persistentStoreCoordinator;
    NSManagedObjectModel *managedObjectModel;
    NSManagedObjectContext *managedObjectContext;       
}

@property (nonatomic, strong) IBOutlet UIWindow *window;
@property (nonatomic, strong) UITabBarController *tabBarController;

- (IBAction)saveAction:sender;

@property (nonatomic, strong, readonly) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, strong, readonly) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, strong, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;

@property (weak, nonatomic, readonly) NSString *applicationDocumentsDirectory;

@end

コンパイルして実行します。

4

1 に答える 1

0

取り除こうとする[window addSubview:self.tabBarController.view];

于 2012-12-20T14:26:48.640 に答える