I have a Tab bar controller which consists of 4 tabs and each Tab contains a navigation controller . When i present a view controller on any tab and after dismissing when i try to push then interactive pop Gesture do not works till I do not change the Tab. For Example when I present a view controller B from A and now dismiss it, Now I Push to C from A (A -> C) now interactive pop gesture should work because I have set this property in View Controller A , but when i try to swipe then the view controller pops at once and no animation is seen. Also pushing again to View Controller C does not call viewDidAppear Method. This problem continues till I change my Tab. Any ideas would be great
Interactive Pop gesture do not works when I present a viewcontroller
222 views Asked by Kunal Gupta At
1
There are 1 answers
Related Questions in UINAVIGATIONCONTROLLER
- Navigation Controller not working after adding Tabbar controller
- Open View When Notification Tapped
- Present UIViewController using sheetPresentationController inside UINavigationController
- Navigating two times from landscape to portrait
- Swift arabic version, delaying happening after click back or push a view controller, in the navigation bar
- iOS 17 - SwiftUI push navigation animations start breaking
- performSegue() works to show (push) either of two UIViewControllers, but one has nil navigationController
- hidesBottomBarWhenPushed is not working when using UIPageViewController swift
- iOS UITableView content goes under UINavigationBar weird bug when inputAccessoryView containing UITextView shows keyboard
- UINavigationController glitchy animation when pushing new view controller
- passing date value in navigation-compose
- why navigationbar is overlapping the view which is below of it when dragging?
- iOS UINavigationController How to push view controller from left to right when showing right to left languages
- Converting my smartwatch into a compass for my bike as a accessory
- UiNavigationController - title in navigation bar is off-center when right side has 2 buttons
Related Questions in UITABBARCONTROLLER
- Navigation Controller not working after adding Tabbar controller
- Show "tutorial" over UITabBarViewController with constraints in Swift?
- How to dismiss a Tab Bar Controller from inside one of its own tabs?
- iOS - UITabBarItem long titles overlap using UITabBarAppearance
- Unable to customize my navigation bar inside the viewcontroller that is under a tabbar controller
- iOS doesn't show tab bar after popping a view controller with hidesBottomBarWhenPushed sets to true
- iOS 17 UIKit TabBar Item Animation
- How do I add a tabBar Item without having to add navigation controller?
- How to use UITabBarController with multiple storyboards?
- How to add these capsule shape behind the selected tab bar item image
- Fail to Push View Controller in "More" Tab in TabBarController
- How to create a referencing outlet for a Tab Bar Controller
- How can I change the unselected tabbar button color?
- TabBar background color is changing even though I don't want it to
- Swift Tab Bar remains translucent
Related Questions in INTERACTIVEPOPGESTURE
- Navigation item views disappearing when using multiple search bars and interactive pop gesture
- UINavigation Handle specific swipe back for some ViewController
- Why automatic rotation does not work correctly while swipe back?
- UINavigationController Interactive Pop Gesture only works first time
- Search bar disappears when interactive pop gesture is happening
- Change interactivePopGestureRecognizer direction
- React Native: Is it possible to increase the touch area of a navigational swipe action?
- Interactive Pop gesture do not works when I present a viewcontroller
- iOS 9.3 Interactive pop gesture corrupts navigation bar
- interactivePopGestureRecognizer popToRootViewController instead of popViewController
- Forwarding touches to UINavigationController Interactive Pop Gesture Not completely Working
- Disable scrolling when interactivePopGestureRecognizer transition is taking place
- How do I see the progress of a pop animation?
- interactivePopGestureRecognizer some time freez view touch and it will also cause [viewcontroller hash]: message sent to deallocated instance?
- Quickly swiping back using default interactivePopGestureRecognizer disables interaction of a UITableViewCell
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Actually there was a very simple and silly mistake that I had done in TabBarController class. The super method of viewDidLoad and viewDidAppear were not called due to which this problem was faced.