在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 – 适用于任何对象类.

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...