我制作了自定义圆控件,我是从我的RootView控制器通过Slider发送值。你可以帮我解决一下,如何对Circle Control应用触摸我可以更改值,比如在我的Custom Circle周围制作自定义滑块。
#import "RKCustomCircle.h"
@implementation RKCustomCircle
@synthesize sliderPerccentageValue;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
xPos = 320/2;
yPos = 250;
radius = 80;
rotationAngle = 0;
}
return self;
}
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
[self drawCircleChart: context];
}
- (void) drawCircleChart:(CGContextRef) context
{
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
CGContextFillRect(context, CGRectMake(0, 0, 320, 480));
float a = rotationAngle;
[self drawCirclewithStartingAngle:a withContext:context];
}
- (void) drawCirclewithStartingAngle:(float)startAngle withContext:(CGContextRef) context
{
float endAngle = startAngle + (sliderPerccentageValue/ 100) * (M_PI*2);
float adjY = yPos;
float rad = radius;
CGContextSetFillColorWithColor(context, [UIColor greenColor].CGColor);
CGContextSetStrokeColorWithColor(context,[UIColor blackColor].CGColor);
CGContextSetLineWidth(context, 1.0);
CGContextBeginPath(context);
CGContextMoveToPoint(context, xPos, adjY);
CGContextAddArc(context, xPos, adjY, rad, startAngle, endAngle, 0);
CGContextClosePath(context);
CGContextDrawPath(context, kCGPathFillStroke);
}
RootView是,
@implementation RKViewController
- (void)viewDidLoad
{
[super viewDidLoad];
circleView = [[RKCustomCircle alloc] initWithFrame:CGRectMake(0, 100, 320, 360)];
[circleView addTarget:self action:@selector(newValue:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:circleView];
}
- (IBAction)sliderValueChangedInPercentage:(UISlider *)sender {
circleView.sliderPerccentageValue =sender.value;
[circleView setNeedsDisplay];
}
答案 0 :(得分:1)
使用UITapGestureRecognizer
。
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(oneTap:)];
[singleTap setNumberOfTapsRequired:1];
[singleTap setNumberOfTouchesRequired:1];
[circleView addGestureRecognizer:singleTap];
添加此方法
- (void)oneTap:(UIGestureRecognizer *)gesture
{
NSLog(@"Touch occur");
}
答案 1 :(得分:0)
你所有的事情都是正确的,但只有以下部分是不正确的。
- (IBAction)sliderValueChangedInPercentage:(UISlider *)sender {
circleView.sliderPerccentageValue =sender.value;
[circleView setNeedsDisplay];
}
上面的代码没有提供任何值,因为你已经附加到实现UIControl的控件,而不是UISlider。您也没有,您的UIControl将工作..
相反,您可以在控件内部触摸事件,无需从外部添加任何操作,并且您必须检测圆形触摸并跟踪值,请参阅此应用here它将帮助您获取值触摸圆形时。
希望它会对你有所帮助。一切顺利。
答案 2 :(得分:0)
您需要覆盖圆圈视图的pointInside:withEvent:
方法。有关详细信息,请参阅this。