0

ツールバーを表示しようとしているナビゲーション コントローラーのルート ビュー コントローラーの init メソッドを次に示します。

-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
    self = [super initWithNibName:nil bundle:nil];
    if(self){
        //GUI implementation
        self.navigationController.toolbarHidden = NO;
        UIBarButtonItem *flexiableItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
                                                                                       target:self
                                                                                       action:nil];
        UIBarButtonItem *item1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh
                                                                               target:self
                                                                               action:nil];
        self.toolbarItems = [NSArray arrayWithObjects:flexiableItem, item1, nil];

        UIBarButtonItem* addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
                                                                                   target:self
                                                                                   action:@selector(addEmployee)];

        self.navigationItem.rightBarButtonItem = addButton;
        self.navigationItem.leftBarButtonItem = self.editButtonItem;
    }
    return self;
}

アプリデリゲートのデリゲートapplication:DidFinishLaunchingメソッドは次のとおりです。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    BOHomeViewController* hvc = [[BOHomeViewController alloc] initWithStyle:UITableViewStylePlain];

    UINavigationController* navbar = [[UINavigationController alloc] initWithRootViewController:hvc];
    [self.window setRootViewController:navbar]; 

    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

ツールバーがまったく表示されません。誰かが私が何か間違ったことをしている場所を指摘できますか? とても有難い。

4

3 に答える 3