Nicolas Bouillon

Results 4 comments of Nicolas Bouillon

I confirm that VittoriDavide's solution perfectly works, thanks a lot, here is the swift equivalent `open override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { if gestureRecognizer.isKind(of: UIPanGestureRecognizer.self) { let gesture...

I have exactly the same issue...while I didn't have it in the previous version of XCode. Since upgrade to 12.0, it doesn't work, whatever I do

Oddly enough, it works now but I have to face another problem. The validation works and the delegate methods of sessionManager are called. But I had to change the code...

Well, after investigation, it seems that the initialisation of my controller is called TWIICE...why, Ii don't know. class SceneDelegate: UIResponder, UIWindowSceneDelegate { var window: UIWindow? let rootViewController : ViewController =...