I have printed a UITableviewCell\'s gesture in – tableView:didSelectRowAtIndexPath method in NSLog as
There is a way to gain access to the property target, but I'm not sure that this method will pass the Apple approval process.
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
Thanks neilco - his answer help create solution.
Note: the exact class of the object targetOfMyGes need to define yourself. By default it id - suitable for any object class.