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 6055855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:18:41+00:00 2026-05-23T08:18:41+00:00

I have a UIToolbar which I am trying to put some custom UIBarButtonItems on.

  • 0

I have a UIToolbar which I am trying to put some custom UIBarButtonItems on. However, when I use the code below, the button shows up with NO border.

    UIImage *cameraRollButtonImage = [UIImage imageNamed:@"Flash.png"];
    UIButton *cameraRollButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [cameraRollButton setImage:cameraRollButtonImage forState:UIControlStateNormal];
    cameraRollButton.frame = CGRectMake(0.0, 0.0, cameraRollButtonImage.size.width, cameraRollButtonImage.size.height);

    // Initialize the UIBarButtonItem
    cameraRollButtonItem = [[UIBarButtonItem alloc] initWithCustomView:cameraRollButton];
    [cameraRollButtonItem setStyle:UIBarButtonItemStyleBordered];

    //Add the Buttons to the toolbar
    NSArray *toolbarItems = [NSArray arrayWithObject:cameraRollButtonItem];
    [self.cameraTabBar setItems:toolbarItems];

This displays the button just fine, however, there is NO button border (like standard the UIBarButtonItem). So the line [cameraRollButtonItem setStyle:UIBarButtonItemStyleBordered]; doesn’t seem to do anything.

Does anyone have any experience with this?

I would like to be able to eventually rotate the image in the button when the device orientation is changed (keeping the toolbar static), so simply adding an image to the UIBarButtonItem doesn’t work; I need to get this to work with by using the customView property.

Many thanks!
Brett

  • 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-23T08:18:41+00:00Added an answer on May 23, 2026 at 8:18 am

    Have you considered creating your own button image with a border? You can use it as the backgroundImage of a UIButton:

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    
    [button setBackgroundImage:_backgroundImage_ forState:UIControlStateNormal];
    
    // So that the button does not gray out when disabled
    [button setBackgroundImage:_backgroundImage_ forState:UIControlStateDisabled]; 
    
    [button setImage:_cameraImage_ forState:UIControlStateNormal];
    
    button.frame = CGRectMake(0, 0, 125, 30);
    

    You could then use button with initWithCustomView:.

    The PSD file here might give you an overview of how to create your own button.

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

Sidebar

Related Questions

I have a UIToolbar in which I have placed a UIProgressView successfully. However, I
I have a navigation based application which I'm trying to add a unique UIToolbar
I have the following code which launches the iPad's camera when the camera button
I have an UITableViewController which I would like to add UIToolbar to with one
I have a UIViewController that contains a subview and a UIToolbar. I'm trying to
I am trying to add an image to the UIBarButtonItem which I have to
I have an action which begins when the user taps a button on the
Some background: I wanted to have 3 buttons on a UIToolBar . I managed
I have an button on UIToolbar. i need to display another toolbar on clicking
I have put an UITableView inside a UIViewController and have copied code from UITableViewController

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.