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.
ios uitabbarcontroller
|
show 4 more comments
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.
ios uitabbarcontroller
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
|
show 4 more comments
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.
ios uitabbarcontroller
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
ios uitabbarcontroller
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
|
show 4 more comments
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
|
show 4 more comments
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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