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 made a custom round button, even though i click outside the radius the button still works....any help how to disable it??

    [button setBackgroundColor:[UIColor blackColor]];
    [button setTitle:@"Show View" forState:UIControlStateNormal];
    button.frame = CGRectMake(135.0, 180.0, 40.0, 40.0);
    button.clipsToBounds = YES;
    button.layer.cornerRadius = 20;//half of the width
    button.layer.borderColor=[UIColor grayColor].CGColor;
    button.layer.borderWidth=2.0f;
    [self.view addSubview:button];

how to disable the outer region after clipping?

share|improve this question

1 Answer

Check this tutorial for alternate way to draw buttons:
http://www.popculturesoft.com/post/Taming-the-UIButton.aspx

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.