我已经创建了UITextField的自定义子类CustomTextView.
>我创造了一个
private var tapGesture = UITapGestureRecognizer()
在customTextView类中
>在initInView中,我有以下代码
tapGesture.addTarget(self,action: "tapTextField:") self.addGestureRecognizer(tapGestureRecognizer)
> CustomTextView实现了UIGestureRecognizerDelgate
> CustomTextView有一个名为tapTextField的私有函数
现在,当我使用iOS模拟器并单击文本字段时,函数tapTextField永远不会被调用.
我在这里错过了什么?我看到类似的帖子,但没有一个回答我的问题.我无法对那些评论,因为我还没有声誉.所以问一个新问题.
PS:这与设置的firstResponder有关吗?这是我正在处理的其他人的代码,所以我可能错过了一些东西.让我知道我应该寻找什么
相关堆栈溢出问题:
> Add UITapGestureRecognizer to UITextView without blocking textView touches
> UITextview: Place focus on becomefirstresponder