How do I make a custom UISegmentedControl?

I have 2 images, 1 that should be displayed when the segment is active and the other if the segment is inactive. Can i override the style or something so i have a UISegmentedControl with my own images as active/inactive background?

link|improve this question
3  
Please mark the correct answer for others visiting this question. – Sheehan Alam Aug 27 '11 at 21:00
feedback

6 Answers

I wrote this a while back for a similar problem. Maybe you can reuse some of it.

// Create a segmented control.
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:nil];
[segmentedControl insertSegmentWithImage:[UIImage imageNamed:@"up_button.png"] atIndex:0 animated:YES];
[segmentedControl insertSegmentWithImage:[UIImage imageNamed:@"down_button.png"] atIndex:1 animated:YES];
segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
segmentedControl.frame = CGRectMake(0, 0, 90, 30);
[segmentedControl setMomentary:YES];
[segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged];

// Check if this is the first and / or the last page in order to enable or disable the back / forward button.
if ([recipesArray count] == 1) {
	[segmentedControl setEnabled:NO forSegmentAtIndex:0];
	[segmentedControl setEnabled:NO forSegmentAtIndex:1];
} else if ([currentIndex intValue] == 0) {
	[segmentedControl setEnabled:NO forSegmentAtIndex:0];
} else if ([currentIndex intValue]+1 == [recipesArray count]) {
	[segmentedControl setEnabled:NO forSegmentAtIndex:1];
}

// Initialize a bar button item with the segmented control as custom view and assign it to the right bar button item.
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:segmentedControl];
self.navigationItem.rightBarButtonItem = barButtonItem;

[segmentedControl release];
link|improve this answer
1  
Thanks, most helpful! – Johan Wikström Dec 9 '09 at 13:00
13  
I don't see the relevance between the answer and the question. – an0 Jan 15 '11 at 0:39
1  
i don't see it either... ? – mihir mehta May 20 '11 at 6:29
feedback

Yes, you you DO need 2 images (on and off) for each section of the segment bar. (4 segments... 8 images.) But it lets you set a total of 16 choices! (All with only consuming 1 row in your GUI.)

I got everything working EXCEPT... how do you hide the original segment bar graphics?

Can't set alpha to 0. (It will also hide your images.)

Can't set "tintClear" to "clear". (Not sure why it makes it black and white.)

Can't set it to "hidden"... nothing will work at all.

Can't set "background" to "clear". (The background is NOT the segmentbar graphics.)

link|improve this answer
feedback

The simplest way would be to create your own control that mimics UISegmentedControl. UISegmentedControl just arranges a series of buttons and manages their image states for you; it doesn't do anything special.

link|improve this answer
feedback

I wrote something that works as @rpetrich was explaining without placing in a array and in my opinion is the easiest solution to this. Hope someone finds this useful

IBOutlet UIButton *index0;
IBOutlet UIButton *index1;
IBOutlet UIButton *index2;
IBOutlet UIImageView *segMentControl;
-(IBAction)segmentSwitch:(UIButton *) buttonIndexPressed;


-(IBAction)segmentSwitch:(UIButton *) buttonIndexPressed{


if (buttonIpressed == index0) {

    [segmentControl setImage:[UIImage imageNamed:@"Seg1Sel.png"]];
    NSLog(@"index 0 pushed");


   index0.enabled = NO;
    index1.enabled = YES;
    index2.enabled = YES;        
}

else  if (buttonIpressed == index1) {

    [segmentControl setImage:[UIImage imageNamed:@"Seg2Sel.png"]];
    NSLog(@"index 1 pushed");



   index0.enabled = YES;
    index1.enabled = NO;
    index2.enabled = YES;

}

else  if (buttonIpressed == index2) {

    [segmentControl setImage:[UIImage imageNamed:@"Seg3Sel.png"]];
    NSLog(@"index 2 pushed");


   index0.enabled = YES;
    index1.enabled = YES;
    index2.enabled = NO;


}
}
link|improve this answer
feedback

In order to do this you must listen for the UIControlEventValueChanged and change the image yourself. You shouldn't need to subclass the UISegmentedControl - remember composition over inheritance is preferred!

link|improve this answer
Yes i thought about that but it gives me 2 problems. 1. I see the UIsegmentedcontroll below my images. 2. If i do it this way i have to create for every single segment 2 images because a sement can only hold a title or an image. – Robbert Aug 17 '09 at 8:40
feedback

You can use the methods which are described in the iOS developer libary:

http://developer.apple.com/library/ios/ipad/#documentation/uikit/reference/UISegmentedControl_Class/Reference/UISegmentedControl.html

Scroll down to the "Customizing Appearance" section. There are methods to set background images for several button states, button divider images, etc.

These methods are only available in iOS5 and later.

@property tintColor  
– backgroundImageForState:barMetrics:
– setBackgroundImage:forState:barMetrics:
– contentPositionAdjustmentForSegmentType:barMetrics:
– setContentPositionAdjustment:forSegmentType:barMetrics:
– dividerImageForLeftSegmentState:rightSegmentState:barMetrics:
– setDividerImage:forLeftSegmentState:rightSegmentState:barMetrics:
– titleTextAttributesForState:
– setTitleTextAttributes:forState:
link|improve this answer
feedback

protected by Will Jan 24 '11 at 19:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.