我想創建一個帶有NavigationBar和TableView的子視圖。在導航欄中應該是一個可以編輯tableView的按鈕。 navigationBar和TableView顯示在子視圖中,但不是barButtonItem。我的代碼中是否有錯誤,或者是否有問題,因爲它是子視圖?UIBarButtonItem未在子視圖中顯示
UIView *tagView = [[UIView alloc] initWithFrame:CGRectMake(0, 325, screenSize.size.width, 200)];
tableView = [[UITableView alloc] initWithFrame:CGRectMake(-10, 40, screenSize.size.width, 150) style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
[tagView addSubview:tableView];
UINavigationBar *navigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, tagView.frame.size.width, 45)];
self.navigationItem.leftBarButtonItem = self.editButtonItem;
[tagView addSubview:navigationBar];
[self.view addSubview:tagInstruction];
[self.view addSubview:tagView];