Preface Today, there is a small requirement. Before clicking the back button on the navigation bar, we need to call a certain API and pop up a UIAlertView to display it. According to the user's option, we determine whether to return or stay in the current controller. For example, when you click the back button in the upper left corner of the navigation bar, our API is called to prompt whether you know. If you click yes, you return. If you click no, you stay in the current controller. Then the question is, the navigation's built-in right swipe back gesture will not be handled when clicking the system's back button, it is automatic, so we have to find a way to change it to leftBarButtonItem, but using leftBarButtonItem will eliminate the right swipe back gesture. You can't have your cake and eat it too? I have a way! The author tried to write a demo to verify what solutions there are, and tried the following four methods:
Option 1 (Not feasible) Solution 1: Only the current controller complies with UIGestureRecognizerDelegate and sets the delegate to self Why is it not feasible? How can we know if we don't test it? It's hard to consider it comprehensively just by thinking about it. So I wrote a small demo to test it. We write this in the controller:
Once the delegate is set to self, the click callback can be implemented by using leftBarButtonItem, and the right swipe gesture is still there. However, the proxy of self.navigationController, which is the navigation controller object, is modified to a certain controller object. When this controller class is released, the proxy becomes nil, so there is no more right swipe back gesture. Then someone might think, what if we set the proxy to self in -viewDidAppear: and set the proxy to the original proxy object in -viewDidDisappear:? This is also not possible. When A pushes to B, B pushes to C, and then returns from C, the proxy is no longer the original navigation proxy. Therefore, this solution is not feasible. Option 2 (Not feasible) Solution 2: Put UIGestureRecognizerDelegate in a common base class controller and set the delegate to self, then override the delegate method in the subclass I tried to put UIGestureRecognizerDelegate in HYBBaseViewControlle, and then implemented the proxy. By default, it returns YES, indicating that it supports right swipe back. If you want a controller not to support right swipe back or to perform some operations before returning, you can do so by overriding this proxy method. This is possible when there is only one controller. However, when the controller is released, the proxy object becomes nil, so the proxy is for the navigation bar object, not a single controller. Option 3 (feasible, but complicated) Solution 3: Put UIGestureRecognizerDelegate in the public navigation class HYBNavigationController, set the delegate to the navigation class, and then rewrite all push/pop related methods. How to implement it as follows:
This is done by rewriting all pop/push related methods and determining whether right swipe is required. Then, we need to make a controller class call our API to determine before swiping right or clicking back, as follows:
This solution does meet our needs. But is there a simpler solution? Maybe because my eyes are a little sleepy today, I didn't realize the fourth solution when I was researching. When I was preparing to write this article, I read the logic again and found that there is a very simple solution that can meet my needs. Option 4 (reliable, ***) Solution 4: Put UIGestureRecognizerDelegate in the public navigation class HYBNavigationController and set the delegate to the navigation class, but only follow the -gestureRecognizerShouldBegin: delegate method.
The usage is the same as the third solution. Isn't it very simplified? It seems that the Lantern Festival gave me a gift. I suddenly thought of this method. I have never studied the interactivePopGestureRecognizer attribute before. This attribute is only available after iOS7. Therefore, I can't directly use leftBarButtonItem to handle it in the project, unless that interface does not need to swipe right to return. Now, everything is clear. It is very simple to use the leftBarButtonItem to call the API in the common base class controller to set it up uniformly. The right swipe back gesture can also be used normally~ What are you waiting for? Try it now! *** If the project you are using also has such a requirement, why not give it a try! The author provides a demo, so you can download the demo first to see the effect! After many tests, the author believes that this is a feasible solution. If you encounter any problems during use, please give feedback to the author. I also want to understand what the situation is. Of course, we also need to find a solution and make progress together. |
<<: Some methods to detect iOS APP performance
>>: 25 New Android Libraries You Definitely Want to Try in Early 2017
Many people must have such a problem before buyin...
Improve your speaking ability, 10 minutes a day e...
With the continuous development of the times, man...
Nowadays, we can often see some gamification sett...
After Mimi Meng ’s advertising quotation of 680,0...
Living in the digital age, using data to guide ma...
What should you do when the KPI indicator is &quo...
[[399563]] I don't know if you have noticed t...
According to foreign media reports, Apple's s...
As one of the new and rapidly emerging industries...
[51CTO.com Quick Translation] It has always been ...
The higher the bid of Baidu bidding promotion , t...
In May of this year, Google officially confirmed ...
This article is for self-study and use, and is a ...
From launching MiTalk and MIUI systems to making ...