在iOS中获取UIGestureRecognizer的操作

前端之家收集整理的这篇文章主要介绍了在iOS中获取UIGestureRecognizer的操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在NSLog中的 – tableView:didSelectRowAtIndexPath方法中打印了一个UITableviewCell的手势
<UIScrollViewPanGestureRecognizer: 0x11e92080; state = Possible; cancelsTouchesInView = NO; delaysTouchesEnded = NO; view = <UITableViewCellScrollView 0x11e94bf0>; target= <(action=handlePan:,target=<UITableViewCellScrollView 0x11e94bf0>)>>

我已将此UIScrollViewPanGestureRecognizer分配给UIGestureRecognizer以访问其属性,如下所示,

UIGestureRecognizer *myGes=[temp.gestureRecognizers objectAtIndex:1];

我能够访问’myGes’的所有属性

myGes.state;
 myGes.cancelsTouchesInView;
 myGes.delaysTouchesEnded;
 myGes.view;

除了一个名为target的属性.

有没有可能访问该属性?因为我需要执行该操作.

任何意见或建议将不胜感激.

先感谢您.

解决方法

有一种方法可以访问属性目标,但我不确定此方法是否会通过Apple批准过程.
NSMutableArray *targets = [myGes valueForKeyPath:@"_targets"];
id targetContainer = targets[0];//get first target for example
id targetOfMyGes = [targetContainer valueForKeyPath:@"_target"];
NSLog(@"%@",targetOfMyGes );//you can see reference for target object

谢谢neilco – 他的回答有助于创建解决方案.

注意:对象targetOfMyGes的确切类需要自己定义.默认情况下,它id – 适用于任何对象类.

猜你在找的iOS相关文章