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 am using MCSegementcontrol class for customizing segemented control like this

NSArray *items = [NSArray arrayWithObjects:@"Supplier", 
                                           @"Status",
                                           @"Lead Date", 
                                           @"A-Z" ,nil];

segmentedControl = [[MCSegmentedControl alloc] initWithItems:items];

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

[segmentedControl setFrame:CGRectMake(20, 30, 728 , 70)];
segmentedControl.layer.cornerRadius = 15.0;
segmentedControl.layer.masksToBounds = YES;
segmentedControl.selectedSegmentIndex = 0;

segmentedControl.tintColor = [UIColor colorWithRed:0.0/255.0 green:77.0/255. blue:146.0/255.0 alpha:1.0];


segmentedControl.selectedItemColor = [UIColor whiteColor];
segmentedControl.unselectedItemColor = [UIColor whiteColor];

UIFont *font = [UIFont boldSystemFontOfSize:25.0f];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
                                                       forKey:UITextAttributeFont];
[segmentedControl setTitleTextAttributes:attributes 
                         forState:UIControlStateNormal];

[self.view addSubview:segmentedControl];
[segmentedControl release]; 

but its not performing action on this [segmentedControl addTarget:self action:@selector(totalAction:) forControlEvents:UIControlEventValueChanged];

on the action of totalAction i have done

-(IBAction)totalAction:(id)sender
{

segmentedControl =  sender;
 NSLog(@"total action %d", [sender tag]);
 if([segmentedControl selectedSegmentIndex] == 0){
    [self getReportDetailtableData:userNameStr1 password:passwordStr1 total:total startDate:startDate enddate:endDate mgrId:MgrID shortBy:@"supplier"];

 //   [self supplier:self];

 }
 else if([segmentedControl selectedSegmentIndex] == 1){

    [self status:self];

 }

 else if([segmentedControl selectedSegmentIndex] == 2){

    [self dateBy:self];

 }
 else if([segmentedControl selectedSegmentIndex] == 3){

    [self alphabetically:self];

 }
}

but this IBAction is not calling on the UIControlEventValueChanged.

Please give me suggestion. i have stuck for a entire day but didn't find solution.

share|improve this question
I copied and pasted you code (but changed the control to UISegmentedControl) and that worked. So, it seems that it has something specifically to do with MCSegmentedControl. – rdelmar Aug 3 '12 at 6:40
yes it is happeneing. its working for UISegmentedControl but not for the MCSegmentedControl. i have downloded thecode form github of MCsegemntedControl. please check it out – Annie Aug 3 '12 at 7:14

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.