Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create UIBarButtonItems programmatically and place these fixed space items between buttons.

share|improve this question

2 Answers

up vote 83 down vote accepted
UIBarButtonItem *fixed = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil]

UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil]
share|improve this answer
22  
Note that to set the width of a Fixed Space UIBarButtonItem, you need to set the .width property. – Nick Forge May 31 '11 at 8:18
    NSMutableArray *leftitems = [[NSMutableArray alloc] init];

       today = [[UIBarButtonItem alloc] initWithTitle:@"Today" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
       today.tag=2;


       cash = [[UIBarButtonItem alloc] initWithTitle:@"Cash" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
       cash.tag=3;

       Credit = [[UIBarButtonItem alloc] initWithTitle:@"Credit" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
       Credit.tag=4;

       All = [[UIBarButtonItem alloc] initWithTitle:@"All" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
       All.tag=1;

       Return= [[UIBarButtonItem alloc] initWithTitle:@"Return" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
       Return.tag=5;

       UIBarButtonItem *fixed = [[UIBarButtonItem alloc] 

initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];

   UIBarButtonItem *fixed2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];

   UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];

   [fixed setWidth:455.0f];
   [fixed2 setWidth:37.0f];



   [leftitems addObject:fixed2];
   [leftitems addObject:Return];
   [leftitems addObject:Credit];
   [leftitems addObject:cash];
   [leftitems addObject:fixed];
   [leftitems addObject:today];
   [leftitems addObject:All];


   self.navigationItem.rightBarButtonItems =leftitems;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.