Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UISegmentedControl in the Navigation Bar with the Back button

I'm adding a UISegmentedControl to the Navigation bar programatically where the titleView should be. But as Apple docs have mentioned under titleView, This property is ignored if leftBarButtonItem is not nil.

But I want to have the back button as well. Like they have illustrated in their own images!

enter image description here

Below is the code I add the UISegmentedControl.

self.navigationItem.leftBarButtonItem = nil;
UISegmentedControl *statFilter = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Filter_Personnal", @"Filter_Department", @"Filter_Company", nil];
[statFilter setSegmentedControlStyle:UISegmentedControlStyleBar];
self.navigationItem.titleView = statFilter;

Is there another way to add a UISegmentedControl along with the Back button as well?

Thank you.

like image 517
Isuru Avatar asked Mar 13 '13 10:03

Isuru


2 Answers

Try this

Remove this line --- > self.navigationItem.leftBarButtonItem = nil;

Add this instead

UISegmentedControl *statFilter = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Filter_Personnal", @"Filter_Department", @"Filter_Company", nil]];
[statFilter setSegmentedControlStyle:UISegmentedControlStyleBar];
[statFilter sizeToFit];
self.navigationItem.titleView = statFilter;

Only change is I have added this line :

[statFilter sizeToFit];

Hope this Helps !!!

like image 51
arun.s Avatar answered Oct 14 '22 16:10

arun.s


You can create a UIBarButtonItem with a custom view which could potentially be your UISegmentedControl.

Something along the lines of the following may work.

//create segmented control with items
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"One", @"Two", nil]];

//create bar button item with segmented control as custom view
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:segmentedControl];

//add segmented control bar button item to navigation bar
[[[self navigationController] navigationItem] setRightBarButtonItem:barButtonItem];

I haven't tested this but it should be along the right lines of what you need.

like image 43
Zack Brown Avatar answered Oct 14 '22 14:10

Zack Brown