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.

In my Ipad app i started with a single UIBarButtonItem at the right: That + picture is just white.

self.switchView.navigationItem.rightBarButtonItem = nil;
 UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"add.png"] style:UIBarButtonItemStylePlain target:self action:@selector(insertKnoopPressed)];
    self.switchView.navigationItem.rightBarButtonItem = rightButton;
    [rightButton release];

With result: http://img257.imageshack.us/i/schermafbeelding2010102.png/

Now i have implemented the UISegmentedControl with the same + button, and also some additonal buttons:

NSArray *segControlItems = [NSArray arrayWithObjects:
        [UIImage imageNamed:@"location.png"], 
        [UIImage imageNamed:@"house.png"],
        [UIImage imageNamed:@"add.png"],
        nil];
 UISegmentedControl *segControl = [[UISegmentedControl alloc] initWithItems:segControlItems];


 segControl.frame = CGRectMake(0, 0, 135, 30);
 segControl.segmentedControlStyle = UISegmentedControlStyleBar;
 segControl.momentary = NO;

 [segControl addTarget:self action:@selector(segAction:) forControlEvents:UIControlEventValueChanged];

 UIBarButtonItem *segBarItem = [[UIBarButtonItem alloc] initWithCustomView:segControl];
 self.switchView.navigationItem.rightBarButtonItem = segBarItem;

 [segControl release];
 [segBarItem release];

With result: http://img714.imageshack.us/i/schermafbeelding2010102.png/

How can i have the same background color then the first button? Because this layout sucks.

Thanks

share|improve this question

1 Answer

You change the tintColor of the segControl using the following line of code

[segControl setTintColor: [UIColor colorWithRed:0.40 green:0.40 blue:0.40 alpha:1.0]];

Hope this helps you.

share|improve this answer
No.. it is still the same... – meersmans Oct 21 '10 at 7:40
So the setTintColor wont work... but when i press the button I have actually the color i want: img139.imageshack.us/img139/313/schermafbeelding2010102.png. Why cant' i set the tintColor? – meersmans Oct 21 '10 at 17:39
the segmentedcontrol adjusts its color according to the navigationbar. So as the color of the navigationbar is blue hence the color of the segmentedcontrol is also blue. The color which you are seeing is the selected segment color. – Atulkumar V. Jain Oct 22 '10 at 9:21
But what if i don't want it to adjust its color? I just want to use the setTintColor property, but it doesnt react... – meersmans Oct 22 '10 at 9:43
its default behavior of navigationbar. If you want to change the color of ur segmentedcontrol remove it from the navigationbar and place it somewhere else... – Atulkumar V. Jain Oct 22 '10 at 9:46

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.