我尝试实现对自定义注释的点击,当它被点击时,表格上的行将被突出显示,
我尝试将手势识别器添加到自定义注释中,但它不起作用。
我也试过注释做选择方法,结果是一样的。
我的代码如下;
UITapGestureRecognizer *singlePress =[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSinglePress:withIndex:temp:)];
[annotationView addGestureRecognizer:singlePress];
[annotationView setUserInteractionEnabled:YES];