I created a control with some items
NSArray *items = [NSArray arrayWithObjects: @"First", @"Second", @"Third", nil];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:items];
I added target to the control
[segmentedControl addTarget:self
action:@selector(controlTapped:)
forControlEvents:UIControlEventValueChanged];
Than i added my segmented control to the toolbar
[toolbar setItems:[NSArray arrayWithObject:
[[[UIBarButtonItem alloc]initWithCustomView:segmentedControl]autorelease]]];
As a result segmentedControl doesn't respond on user tap.
Here is the empty empty method
-(void) controlTapped:(id)sender {
}

controlTapped:method too! – tipycalFlow Mar 26 '12 at 10:20