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 have a strange problem. If I use the UISegmentedControl appearance proxy then I cannot disable a segmented control button anymore. The method doSmth gets triggered when I touch the left segmented control button even If I have it deactivated.

If I remove the setBackgroundImage calls, then it works as expected and the button is deactivated. Unfortunately I have to style the button.

Here is my code:

UIImage* segmentdEnabled = [[UIImage imageNamed:@"SegmentEnabled.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 7, 0, 7)]; 
UIImage* segmentDisabled = [[UIImage imageNamed:@"SegmentDisabled.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 7, 0, 7)];
[[UISegmentedControl appearance] setBackgroundImage:segmentdEnabled forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
[[UISegmentedControl appearance] setBackgroundImage:segmentDisabled forState:UIControlStateDisabled barMetrics:UIBarMetricsDefault];  

NSArray* items =  [NSArray arrayWithObjects:@"▲",@"▼",nil];
UISegmentedControl* segmentedControl = [[UISegmentedControl alloc] initWithItems:items];
segmentedControl.frame = CGRectMake(0, 0, 90, 30);
segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
segmentedControl.momentary = YES;

[segmentedControl addTarget:self action:@selector(doSmth:forEvent:) forControlEvents:UIControlEventValueChanged];

[segmentedControl setEnabled:NO forSegmentAtIndex:0];  // <-- Does not work

UIBarButtonItem* buttonItem = [[UIBarButtonItem alloc] initWithCustomView:segmentedControl];
self.navigationItem.rightBarButtonItem = buttonItem; 

[segmentedControl release];
[buttonItem release];

}

- (void)doSmth:(id)sender forEvent:(UIEvent *)event {
    NSLog(@"Click");
} 

Hopefully someone can help me. Thank you for reading this. mark

share|improve this question
Tested and hereby confirmed, you should file a bug at apple's bugreporter. Tell me if you don't, then i will. – Tieme Jan 21 '12 at 18:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.