tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
tapGesture.numberOfTapsRequired = 1;
[self addGestureRecognizer:tapGesture];
对我有用。
请找到以下代码。
handleTapGesture
然后,我遇到了这个问题,在iPhone 6s中不会调用code=2200 [Invalid query] message="Key may not be empty"
。我认为这是因为iPhone 6s的 Force Touch 功能。
有谁知道如何解决这个问题?感谢。