Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1034885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:27:42+00:00 2026-05-16T14:27:42+00:00

I have a UIViewController with a UITableView in it, and also added a UINavigationBar.

  • 0

I have a UIViewController with a UITableView in it, and also added a UINavigationBar.
How can I add and “edit” button and a “+” button in that bar programmatically?
(I have tried using IB, but the title is always replaced, and not other items are added)
I am not using a UINavigationController. is my UIViewController standing alone.

This is what I have tried without success:

UIBarButtonItem *barButton = 
    [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStyleBordered 
                                                  target:nil
                                                  action:nil];
UINavigationItem *editItem = [[UINavigationItem alloc] initWithTitle:@"Title"];
[editItem setLeftBarButtonItem:barButton animated:YES];
[navigationBar setItems:[NSArray arrayWithObject:editItem] animated:YES];
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T14:27:43+00:00Added an answer on May 16, 2026 at 2:27 pm

    Your UIViewController has a navigationItem property. You can set the left and right bar button items with self.navigationItem.leftBarButtonItem = ... and self.navigationItem.rightBarButtonItem = ...

    Edit:

    OK, I assume you have a reference to your UINavigationBar?
    Then I guess you’d add a single UINavigationItem to it:

    UINavigationItem *item = [[UINavigationItem alloc] initWithTitle:@"A Title"];
    theNavigationBar.items = [NSArray arrayWithObject:item];
    [item release]; // or keep this as an instance variable
    

    and then set that item’s left and right buttons:

    theNavigationBar.topItem.leftBarButtonItem = ...;
    theNavigationBar.topItem.rightBarButtonItem = ...;
    

    I haven’t tried this, but I think it should work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem with data in UITableView. I have UIViewController, that contains UITableView
I have a UIPopOverController that shows a UIViewController with a UITableview in its view.
So basically, how can I push a UIViewController from a UITableView. I have an
I have a UIViewController with a UITableView outlet that I am populating with cells
First a little background info: I have UIViewController that contains a UITableView. In the
I have a UIViewController-> UINavigationBar + UITableView Just a bit more explanation I made
I have a UIViewController that contains a UITableView. I'm trying to fill this table
I have a UIViewController that has a UIPickerView and UITableView. The UIPicker has 3
I have a UIViewController . Within that is a UITableView which is drawn at
I have a UITableView inside UiViewController. In the same screen, I also have two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.