iOS Question tabControl and navgationController Simultaaneously

jazzzzzzz

Active Member
Licensed User
Longtime User
Am attaching a sample project here,
In that clicking on the image on page 1 will make navigation control as keycontrol,then the page is changed to page 4, then clicking in the image in page 4 will make page 5 appear.

What I need is that from page4 I want to come back to page1 and make keycontrol as tab control.Can some one help me with that???
 

Attachments

  • UITabBar.zip
    188.6 KB · Views: 203

jazzzzzzz

Active Member
Licensed User
Longtime User
How will i put back button in page 4 to go back to page 1? Like the normal navigationcontroller back button
 
Upvote 0

jazzzzzzz

Active Member
Licensed User
Longtime User
Start with this:
B4X:
Sub imvImage1_Click
   App.KeyController = navControl
   navControl.SetPagesStack(Array(Page1))
   page4Code.show
End Sub
now I can navigate back to page1 but after that where should i put

B4X:
App.KeyController=TabControl
to make tabcontrol active for page1? I tried on Page!_Appear but that dont went well
 
Upvote 0

jazzzzzzz

Active Member
Licensed User
Longtime User
I think you can simply edit the sample project as you understand what I need...! Thanks in advance
 
Upvote 0
Top