You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
load content view (custom tab bar) with menu but the content menu (tab bar) gone.
I click button to open menu
Then suddenly, custom tab bar appear.
Expected:
first time load content view(custom tab bar) should appear without need to click floating button.
Sample configuration in side class AppDelegate: SideMenuController.preferences.basic.hideMenuWhenEnteringBackground = false SideMenuController.preferences.basic.direction = .right SideMenuController.preferences.basic.position = .sideBySide
Content View Controller add view programmatically under class CustomTabBarViewController extend UITabBarController :
`private var _customTabBar:CustomTabBar!
_customTabBar = UINib.init(nibName: "CustomTabBar", bundle: nil).instantiate(withOwner: nil, options: nil)[0] as! CustomTabBar
self.view.addSubview(_customTabBar)
how bugs reproduce
Expected:
Sample configuration in side class AppDelegate:
SideMenuController.preferences.basic.hideMenuWhenEnteringBackground = false SideMenuController.preferences.basic.direction = .right SideMenuController.preferences.basic.position = .sideBySide
Content View Controller add view programmatically under class CustomTabBarViewController extend UITabBarController :
`private var _customTabBar:CustomTabBar!
_customTabBar = UINib.init(nibName: "CustomTabBar", bundle: nil).instantiate(withOwner: nil, options: nil)[0] as! CustomTabBar
self.view.addSubview(_customTabBar)
Please help, it is need to cache or manually add content view controller for first time load?
The text was updated successfully, but these errors were encountered: