0

我有一个视图,我将带有句柄函数的 tapGesture 添加到该视图中,我想从代码中调用点击动作,以调用句柄函数....

-(IBAction)handleTapGesture:(UIGestureRecognizer *)发送者

我怎样才能做到这一点???

现在我可以得到这个视图,如何从代码中调用点击动作?

我找到了一些关于它的功能,但它不能很好地工作。

像: UIControl sendActionsForControlEvents / UIView performSelector ...

4

2 回答 2

0

关于什么

[theView handleTapGesture:nil];

?

于 2012-07-13T07:16:26.110 回答
0

在您的视图控制器中,输入此代码

   UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
    tapGesture.numberOfTapsRequired=1;
    [self.currentImageView addGestureRecognizer:tapGesture];
    [tapGesture release];

 then write your code for tap function in

-(void) handleTapGesture:(UITapGestureRecognizer *)sender {

}
于 2012-07-13T08:47:33.420 回答