TabBarController selectedViewController Doesn't Change the View









up vote
0
down vote

favorite












I have already read:
Programatically switching tabs using selectedViewController property



I am using XCode 10 and Swift 4.2
I run 2 lines of code in a ViewController.ViewDidAppear which is assigned to the second Tab Bar Item (index 1). Below myAppsTabBarController is a swift class that subclasses UITabBarController and has a static variable called myTabBarController that is assigned to self.



myAppsTabBarController.myTabBarController?.selectedIndex = 3
myAppsTabBarController.myTabBarController?.selectedViewController = myAppsTabBarController.myTabBarController?.viewControllers[3]


The first line works as I can see the 4th tab bar item light up (like it is selected.) The second line doesn't seem to work as the view doesn't update to the 4th tab. I have printed out myAppsTabBarController.myTabBarController?.viewControllers?.count and it is 4 so I know it exists. Any idea why the second line isn't changing the user's view? Thank you.










share|improve this question























  • Did you call it in the main thread?
    – E.Coms
    Nov 10 at 17:20










  • For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
    – Sateesh
    Nov 10 at 17:25










  • Can you please share the code for how the viewControllers are setup?
    – Sateesh
    Nov 10 at 17:25











  • Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
    – Paul K.
    Nov 10 at 18:43










  • I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
    – Paul K.
    Nov 10 at 19:08














up vote
0
down vote

favorite












I have already read:
Programatically switching tabs using selectedViewController property



I am using XCode 10 and Swift 4.2
I run 2 lines of code in a ViewController.ViewDidAppear which is assigned to the second Tab Bar Item (index 1). Below myAppsTabBarController is a swift class that subclasses UITabBarController and has a static variable called myTabBarController that is assigned to self.



myAppsTabBarController.myTabBarController?.selectedIndex = 3
myAppsTabBarController.myTabBarController?.selectedViewController = myAppsTabBarController.myTabBarController?.viewControllers[3]


The first line works as I can see the 4th tab bar item light up (like it is selected.) The second line doesn't seem to work as the view doesn't update to the 4th tab. I have printed out myAppsTabBarController.myTabBarController?.viewControllers?.count and it is 4 so I know it exists. Any idea why the second line isn't changing the user's view? Thank you.










share|improve this question























  • Did you call it in the main thread?
    – E.Coms
    Nov 10 at 17:20










  • For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
    – Sateesh
    Nov 10 at 17:25










  • Can you please share the code for how the viewControllers are setup?
    – Sateesh
    Nov 10 at 17:25











  • Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
    – Paul K.
    Nov 10 at 18:43










  • I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
    – Paul K.
    Nov 10 at 19:08












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have already read:
Programatically switching tabs using selectedViewController property



I am using XCode 10 and Swift 4.2
I run 2 lines of code in a ViewController.ViewDidAppear which is assigned to the second Tab Bar Item (index 1). Below myAppsTabBarController is a swift class that subclasses UITabBarController and has a static variable called myTabBarController that is assigned to self.



myAppsTabBarController.myTabBarController?.selectedIndex = 3
myAppsTabBarController.myTabBarController?.selectedViewController = myAppsTabBarController.myTabBarController?.viewControllers[3]


The first line works as I can see the 4th tab bar item light up (like it is selected.) The second line doesn't seem to work as the view doesn't update to the 4th tab. I have printed out myAppsTabBarController.myTabBarController?.viewControllers?.count and it is 4 so I know it exists. Any idea why the second line isn't changing the user's view? Thank you.










share|improve this question















I have already read:
Programatically switching tabs using selectedViewController property



I am using XCode 10 and Swift 4.2
I run 2 lines of code in a ViewController.ViewDidAppear which is assigned to the second Tab Bar Item (index 1). Below myAppsTabBarController is a swift class that subclasses UITabBarController and has a static variable called myTabBarController that is assigned to self.



myAppsTabBarController.myTabBarController?.selectedIndex = 3
myAppsTabBarController.myTabBarController?.selectedViewController = myAppsTabBarController.myTabBarController?.viewControllers[3]


The first line works as I can see the 4th tab bar item light up (like it is selected.) The second line doesn't seem to work as the view doesn't update to the 4th tab. I have printed out myAppsTabBarController.myTabBarController?.viewControllers?.count and it is 4 so I know it exists. Any idea why the second line isn't changing the user's view? Thank you.







ios uitabbarcontroller






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 0:14

























asked Nov 10 at 16:55









Paul K.

145




145











  • Did you call it in the main thread?
    – E.Coms
    Nov 10 at 17:20










  • For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
    – Sateesh
    Nov 10 at 17:25










  • Can you please share the code for how the viewControllers are setup?
    – Sateesh
    Nov 10 at 17:25











  • Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
    – Paul K.
    Nov 10 at 18:43










  • I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
    – Paul K.
    Nov 10 at 19:08
















  • Did you call it in the main thread?
    – E.Coms
    Nov 10 at 17:20










  • For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
    – Sateesh
    Nov 10 at 17:25










  • Can you please share the code for how the viewControllers are setup?
    – Sateesh
    Nov 10 at 17:25











  • Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
    – Paul K.
    Nov 10 at 18:43










  • I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
    – Paul K.
    Nov 10 at 19:08















Did you call it in the main thread?
– E.Coms
Nov 10 at 17:20




Did you call it in the main thread?
– E.Coms
Nov 10 at 17:20












For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
– Sateesh
Nov 10 at 17:25




For me, both lines are working fine individually. Even, changing the view controller also updates the selectedIndex property accordingly and vice versa.
– Sateesh
Nov 10 at 17:25












Can you please share the code for how the viewControllers are setup?
– Sateesh
Nov 10 at 17:25





Can you please share the code for how the viewControllers are setup?
– Sateesh
Nov 10 at 17:25













Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
– Paul K.
Nov 10 at 18:43




Hmm I'm not sure what you mean by main thread. When my app starts up the 0 index tab bar item is the view that is presented. When the user clicks on the tab bar item at index 1 if certain user data isn't set up (which i check for at the end of ViewDidLoad) then I'd like to send the user to tab bar item at index 3. So this code sits in a function called at the end of ViewDidLoad.
– Paul K.
Nov 10 at 18:43












I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
– Paul K.
Nov 10 at 19:08




I will add that the second line does seem to encompass the function of the first line so I guess I could drop the .selectedIndex = 3 line.
– Paul K.
Nov 10 at 19:08

















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',
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%2f53241235%2ftabbarcontroller-selectedviewcontroller-doesnt-change-the-view%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53241235%2ftabbarcontroller-selectedviewcontroller-doesnt-change-the-view%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







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3