Hello,
My project deals with IOS 10.2 and the app user interface has been created using the interface builder through standard components to TapGesture Recognizer.
Every time i present a viewcontroller there is a very short timeframe where tap gesture recognizers are not triggering any action. If user wait few more miliseconds, the tap works right even at first time.
Through different forums i have read about the following options:
- nest the call of "present view controllers" in main thread
- Make a CFRunLoopWakeup before presentviewcontroller
- Add programatically the TapGesturerecognizer and bind it to a variable
- change the states of "delays touches end" and "delays touches began"
All above have been unsuccessful.
Anyone would have met similar issues with the first tap just after the view load?
Stephane