I have a main uinavigationcontroller that loads a uitableview as a subview as my “main view”, I push a new uiview controller on, then in that viewcontroller I add a left nav button to popviewcontroller, bringing me back to the main view
all of that works just fine, the issue is when I pop back to the main view all input is doa, no swipes, scrolls, gestures, whatever, can’t click on any of the table cells or scroll the table
not getting thrown to the debugger so I can only assume I haven’t crashed the app, and I can do programmatic things in viewdidappear on the main view that affects the view, set timers, etc, but my screen input just doesn’t work
any ideas as to where my input goes?
It’s hard without any code, but you’re probably adding gesture recognizers to views in the view you just popped. You can try adding the gestures to UINavigationController’s view, or window.view, or some other view that stays alive between navigation stack pushing/popping.