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?