I'm using a navigationController in my app. One UI i have tried to click one button (Not in Navigation bar) viewWillDisappear is not called. But i'm not using the navigationController it's calling the viewWillDisappear. Can you please help me how to call the viewWillDisappear with a navigationController?
viewWillDisappear is not called
6.5k Views Asked by 2vision2 At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in UINAVIGATIONCONTROLLER
- Switch between UIStatusBar color (black/white) in UINavigationController based app
- UINavigation Bar to turn transparent as user navigates deeper
- Implementing navigation that supports going back to a search result
- Delegates in Navigation Controller
- Using Navigation Controller in TabBar Controller Iphone 6+ IOS 8.3
- How is it I can animate the change in bar tint color of a UINavigationBar but not a UITabBar?
- Side menu with dynamic table cell will navigate page but with navigation controller coming as nil
- How do I access a view controller from AppDelegate.m during a background refresh
- Change UIWindow backgroundColor from UIViewController?
- view with navigationController over tabBarController
- iOS back button working weirdly in iOS8
- Add UINavigationController to navigation stack
- NavigationBar not loading when ViewController is programatically presented
- What method is called when UINavigationController is presented?
- Why is the UINavigationBar turning black?
Related Questions in VIEWWILLAPPEAR
- viewWillAppear and viewDidAppear not called while viewDidLoad called when something is in the UIViewController
- Swift - Load next view controller if already registered
- Retain UIPickerView row when returning to view
- viewWillAppear and viewDidAppear called - viewDidLoad not
- IOS - viewWillAppear vs viewWillLayoutSubviews - NSLayoutConstraint- extension keyboard
- viewWillAppear equivilent in Windows Phone 8?
- Perform segue in viewWillAppear cause problems in iOS 7
- viewWillAppear only being called once
- Mark tableview cell as completed when user user returns from subview
- viewWillDisappear is not called
- popViewController / viewWillAppear not animated in iOS 5
- not call viewWillAppear while popping from view controller in iPhone
- ViewDidAppear Home Button
- viewWillAppear and UIApplicationDidBecomeActiveNotification
- iOS routing viewDidAppear to child view controllers?
Related Questions in LINPHONE
- Samsung Galaxy S5 speakerphone\microphone issue
- Linphone compiling for android error ndk r10e
- Runtime Error [Android Studio] Linphone Project
- listen to RTP audio stream on iOS
- Linphone PeerAddress DisplayName is not being set
- How to get audio samples in linphone to pass to other interface or to save them?
- Linphone android crash "Cannot start linphone"
- How can I create a SIP connecton using Liblinphone interface class?
- Use Linphone in Armv7s, Armv7 and arm64
- Getting Error while trying to Link host strings to simulator SDK (Linphone)
- Caused by: java.lang.UnsatisfiedLinkError: Couldn't load gnustl_shared from loader dalvik.system.PathClassLoader findLibrary returned null
- Why can't my own soft client register to asterisk SIP server when I have liblinphone?
- Flexisip Linphone don't revice incoming call when in background mode
- PushKit with VOIP working unstable
- SSL Client certificate verification on linphone
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)
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?
So, first of all
- (void)viewWillDisappear:(BOOL)animatedis a method specific toUIViewControllerclass.Second, this method shouldn't be called directly from the code, this method is called automatically when a
UIViewControlleris removed from a view hierarchy. (check UIViewController specs)So in order to handle this method call, you have to implement it in your custom
UIViewControllerclass (do not forget to call[super viewWillDisappear:animated]). Whenever your customUIViewControllerview will disappear from the screen (is popped from the stack or otherUIViewControlleris added to the stack) this method will be called.