last controller's content visible while pushing a new view controller
NickName:pkc456 Ask DateTime:2019-06-28T00:48:45

last controller's content visible while pushing a new view controller

I am facing a very basic problem while pushing a view controller. When I am pushing a new controller, the last controller's content is visible on screen. I am pushing the new controller as follows:

DispatchQueue.main.async {
                    self.navigationController?.pushViewController(reviewFeatureViewController, animated: true)
                }

enter image description here

Copyright Notice:Content Author:「pkc456」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/56795553/last-controllers-content-visible-while-pushing-a-new-view-controller

More about “last controller's content visible while pushing a new view controller” related questions

Tabbar controller showing last pushed controller - swift 4

I have tab bar controller with 3 tabs(all view controllers are embedded in navigation controller) while clicking the 3rd tab am showing a view controller with start button, clicking start it goes t...

Show Detail

Passing data from initial view controller to the last view controller

as written in the subject i can't find a way to pass a CLLocation data from the initial view controller to the last view controller. My app has a 4 view controller (A-B-C-D). In the initial view

Show Detail

Getting last shown view controller

Is it possible to get last shown view controller in AppDelegate in - (void)applicationDidBecomeActive:(UIApplication *)application; Thanks for answering=)

Show Detail

Filename as last argument to MVC controller

I have an MVC controller with a single method which contains a few arguments, the last of which is a filename with an extension and it is this last argument which causes issues. Say the format I w...

Show Detail

Getting the last error for a PID controller

I'm trying to build a PID controller on Python. Below is so far my implementation. Although the syntax is coherent, this is still pseudocode. def PID(self, Kp, Ki, Kd, reference_velocity,

Show Detail

Kafka rolling restart active controller last performance benefits

Confluent and many others recommend during rolling restarts to ensure that the active controller of the Kafka cluster is restarted last: The active controller should be the last broker you resta...

Show Detail

How do I return back to RootView Controller from my last view controller?

I have 5 view controller and want to come back from the last view to 1st view controller

Show Detail

UITabbarController replace the last view controller

I need replace the last view controller, depending on the condition. Into TabBarController I have 4 view controllers, last view controller it's LoginVC. If I'm already logged in I need replace Logi...

Show Detail

Swift - dismiss last View Controller after manual transition

I'm building an app, where after 8 seconds of silence a new View Controller is pushed. The transition is cross dissolve (modally). The new view controller has a blur effect and still shows the las...

Show Detail

i want to reserve the last state of the controller

I added a google maps api v3 and I added markers and routes to this map. When I change the view and I come back to the maps view I don't found elemnts that I added.So I want to charge the last sta...

Show Detail