I'm using EFCircularSlider to display circular slider.
Here's my code
EFCircularSlider *circularSlider = [[EFCircularSlider alloc] initWithFrame:CGRectMake(0, 0, _myView.frame.size.width, _myView.frame.size.height)];
[circularSlider addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
circularSlider.lineWidth = 50;
[self.sliderView addSubview:circularSlider];
Right now the circle is coming properly and I want to make the middle space of the circle to act as a UIButton. How can we add button in the middle? Anyhelp appreciated. Thanks in advance.