iOS Question a panel over the tabbar

Ju Yang

Active Member
Licensed User
Longtime User
i want to let a panel can over the tabbar so that can reach a slide effect

 

Attachments

  • QQ图片20151107121618.jpg
    112.5 KB · Views: 332

Ju Yang

Active Member
Licensed User
Longtime User
i am using TabBarController, at the same time ,i want to click a button,i can hide the tabbar
 
Upvote 0

narek adonts

Well-Known Member
Licensed User
Longtime User
to add a view to a TabBarController you can also do this

B4X:
dim tb as TabBarController
dim tbView as NativeObject
dim noTB as NativeObject
dim myPanel as Panel
myPanel.Left=0
myPanel.Top=500
myPanel.Width=50
myPanel.Height=50
myPanel.Color=Colors.Green

noTB=tb
tbView=notb.GetField("view")
tbView.RunMethod("addSubview:",array(myPanel))

So you can Add you sliding menu panel this waht and slide it LayoutAnimation
 
Last edited:
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…