LoginSignup
3
1

More than 3 years have passed since last update.

UINavigationController タイトルが切れる対策

Posted at

タイトルで yやtの文字が切れてしまう対策


self.navigationController?.navigationBar.titleTextAttributes = [
            NSAttributedString.Key.foregroundColor: UIColor.black,
            NSAttributedString.Key.font: UIFont(resource: R.font.hiraKakuProNW6, size: 15.0)!,
            NSAttributedString.Key.baselineOffset: 1
]

baselineOffsetでタイトルを少しずらす。
ラベルを貼り付ける手もあり。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1