ナビゲーションバーの右に2つのボタンがあります。BGカラーとテキストスイフトを使用したカスタムUIBarButtonItem 3
extension UIViewController {
func setNavigationBarItem() {
let profileButton = UIBarButtonItem(title: "?", style: .plain, target: self, action: #selector(didTapProfileButton(_:)))
navigationItem.rightBarButtonItems = [addRightBarButtonWithImage(UIImage(named: "menu")!), profileButton]
self.slideMenuController()?.removeRightGestures()
self.slideMenuController()?.addRightGestures()
}
}
私はこのように2つのボタンを作成しました。しかし、私が望むprofileButtonは、背景色とそのボタンの角の半径を持っています。それのように見えるように、それを追加する方法:
は黒い部分を無視します。 UIBarButton
は黄色の背景色とコーナー半径になります。そのために
あなたの実際の期待とあなたが得ているものは、plz指定してください。 –