ios - presenting new view controller. tabbed icons go away -
i working on project tabbed application. have button on home page goes second tabbed page when loads gets rid of tabs @ bottom. how prevent happening? code:
func managebuttonpressed() { let nvc:secondviewcontroller = secondviewcontroller() self.presentviewcontroller(nvc, animated: true, completion: nil) }
replace:
self.presentviewcontroller(nvc, animated: true, completion: nil)
with:
self.tabbarcontroller?.selectedindex = 1
this assuming home page button @ index 0 on first tab button of tab bar, while second vc on second tab @ index 1. may change index based on position of tab bar.
Comments
Post a Comment