Navigation bar flashes when cancelling back swipe










0














I have a pretty simple setup:



The root view controller has the navigation bar hidden, and the secondary view controller (Settings) has the navigation bar shown with a large title. To achieve the hiding and showing of the navigation bar, I do this:



In the root view controller:



override func viewWillAppear(_ animated: Bool) 
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: animated)


override func viewWillDisappear(_ animated: Bool)
super.viewWillDisappear(animated)
navigationController?.setNavigationBarHidden(false, animated: animated)



That's it. And this works perfectly except for this special case: When I pan right as if I am dismissing the secondary view controller but then pan back left to cancel, the navigation bar flashes while the secondary view controller animates back as it should. Here is what this looks like in slo-mo:



screengrab



This same exact thing happens if I move the navigation bar hiding into the secondary view controller's viewWillAppear(_:).



How can I stop the flashing and make this work right?










share|improve this question























  • Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
    – Gustavo Barbosa
    Nov 13 '18 at 2:41










  • @GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
    – Daniel
    Nov 13 '18 at 3:06















0














I have a pretty simple setup:



The root view controller has the navigation bar hidden, and the secondary view controller (Settings) has the navigation bar shown with a large title. To achieve the hiding and showing of the navigation bar, I do this:



In the root view controller:



override func viewWillAppear(_ animated: Bool) 
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: animated)


override func viewWillDisappear(_ animated: Bool)
super.viewWillDisappear(animated)
navigationController?.setNavigationBarHidden(false, animated: animated)



That's it. And this works perfectly except for this special case: When I pan right as if I am dismissing the secondary view controller but then pan back left to cancel, the navigation bar flashes while the secondary view controller animates back as it should. Here is what this looks like in slo-mo:



screengrab



This same exact thing happens if I move the navigation bar hiding into the secondary view controller's viewWillAppear(_:).



How can I stop the flashing and make this work right?










share|improve this question























  • Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
    – Gustavo Barbosa
    Nov 13 '18 at 2:41










  • @GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
    – Daniel
    Nov 13 '18 at 3:06













0












0








0







I have a pretty simple setup:



The root view controller has the navigation bar hidden, and the secondary view controller (Settings) has the navigation bar shown with a large title. To achieve the hiding and showing of the navigation bar, I do this:



In the root view controller:



override func viewWillAppear(_ animated: Bool) 
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: animated)


override func viewWillDisappear(_ animated: Bool)
super.viewWillDisappear(animated)
navigationController?.setNavigationBarHidden(false, animated: animated)



That's it. And this works perfectly except for this special case: When I pan right as if I am dismissing the secondary view controller but then pan back left to cancel, the navigation bar flashes while the secondary view controller animates back as it should. Here is what this looks like in slo-mo:



screengrab



This same exact thing happens if I move the navigation bar hiding into the secondary view controller's viewWillAppear(_:).



How can I stop the flashing and make this work right?










share|improve this question















I have a pretty simple setup:



The root view controller has the navigation bar hidden, and the secondary view controller (Settings) has the navigation bar shown with a large title. To achieve the hiding and showing of the navigation bar, I do this:



In the root view controller:



override func viewWillAppear(_ animated: Bool) 
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: animated)


override func viewWillDisappear(_ animated: Bool)
super.viewWillDisappear(animated)
navigationController?.setNavigationBarHidden(false, animated: animated)



That's it. And this works perfectly except for this special case: When I pan right as if I am dismissing the secondary view controller but then pan back left to cancel, the navigation bar flashes while the secondary view controller animates back as it should. Here is what this looks like in slo-mo:



screengrab



This same exact thing happens if I move the navigation bar hiding into the secondary view controller's viewWillAppear(_:).



How can I stop the flashing and make this work right?







ios swift uinavigationcontroller






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 3:40

























asked Nov 13 '18 at 2:08









Daniel

1,622520




1,622520











  • Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
    – Gustavo Barbosa
    Nov 13 '18 at 2:41










  • @GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
    – Daniel
    Nov 13 '18 at 3:06
















  • Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
    – Gustavo Barbosa
    Nov 13 '18 at 2:41










  • @GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
    – Daniel
    Nov 13 '18 at 3:06















Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
– Gustavo Barbosa
Nov 13 '18 at 2:41




Do you really need to make it appear/disappear with animation? Have you tried setting navigationController?.isNavigationBarHidden instead?
– Gustavo Barbosa
Nov 13 '18 at 2:41












@GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
– Daniel
Nov 13 '18 at 3:06




@GustavoBarbosa, that doesn't work because then when I drag at all the navigation bar disappears
– Daniel
Nov 13 '18 at 3:06












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53272756%2fnavigation-bar-flashes-when-cancelling-back-swipe%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53272756%2fnavigation-bar-flashes-when-cancelling-back-swipe%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

政党