LoginSignup
10
7

More than 3 years have passed since last update.

iOSで等幅フォントを指定する

Posted at

等幅フォントを指定する方法

XCodeでiOSアプリを開発する際、UILabelのフォントとしてシステムフォントを指定すると、San Franciscoが適用されます。これは特に何も指定しなければプロポーショナルフォントとなりますが、数値や時間表記においては等幅フォントを使用したいケースがあります。

システムフォント(San Francisco)を等幅とするには、以下のように monospacedDigitSystemFont を使用します。

@IBOutlet weak var label: UILabel!

override func viewDidLoad() {
    label.font = UIFont.monospacedDigitSystemFont(ofSize: 20, weight: .medium)
}

参考

10
7
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
10
7