在我的應用程序中,我使用SWRevealViewController。目前一切工作正常,除了菜單圖像position.I設置菜單按鈕編程。現在我需要把它放到正確的位置。它還需要在所有屏幕尺寸下工作,並且需要在同一個地方。 我設置了這樣的如何在Swift中正確設置圖像位置?
override func viewDidAppear(animated: Bool) {
let image = UIImage(named: "[email protected]")
tabBarController?.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "", style:
UIBarButtonItemStyle.Plain, target: self.revealViewController(), action: Selector("revealToggle:"))
tabBarController?.navigationItem.leftBarButtonItem?.image = image
}
菜單按鈕,下面是結果
如何解決呢?我想我需要以編程方式來做... 這裏是我的故事板文件的總體佈局。
謝謝您的回答。
當使用'UITabBarController's和'UINavigationController's在一起時,'UITabBarController'應該先,並在'UITabBarController'每個項目都應該有自己'UINavigationController'堆棧。 – vacawama