ナビゲーションバーrightbaritem画像ボタンバグiOS 11
このコードはios10では問題なく動作します。私は自分のラベルと、ユーザーの写真プロファイルである円形の円形の画像ボタンを取得します。しかし、xcode 9 ios11シミュレーターを実行すると、ストレッチアウトされます。ボタンフレームは32x32である必要があります。これは、simをチェックしてビューを取得し、xcodeにビューを説明するように指示すると、170x32またはそのような何かの出力が得られます。 私のコードはこちらです。 let labelbutton = UIButton( type: .system) labelbutton.addTarget(self, action:#selector(self.toLogin(_:)), for: .touchUpInside) labelbutton.setTitleColor(UIColor.white, for: .normal) labelbutton.contentHorizontalAlignment = .right labelbutton.titleLabel?.font = UIFont.systemFont(ofSize: 18.00) let button = UIButton(type: .custom) button.addTarget(self, action:#selector(self.toLogin(_:)), for: .touchUpInside) button.frame = CGRect(x: 0, y: 0, width: 32, height: 32) button.setTitleColor(UIColor.white, for: .normal) button.setTitleColor(UIColor.white, for: .highlighted) var …