0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UILabel .adjustsFontSizeToFitWidth 使用記録

Posted at

今回の内容

  • .adjustsFontSizeToFitWidthについてのメモになります。

コードと簡単解説

.adjustsFontSizeToFitWidth = false

import UIKit

class ViewController: UIViewController {
  
    @IBOutlet weak var label: UILabel!
    
    override func viewDidLoad() {
        super.viewDidLoad()
    
        label.adjustsFontSizeToFitWidth = false
        
        label.text = "adjustsFontSizeToFitWidthを使用"       
    }

}

結果

D08DC079-AF97-4127-82ED-B1696FD3D66A_1_201_a.jpeg

.adjustsFontSizeToFitWidth = true

import UIKit

class ViewController: UIViewController {
  
    @IBOutlet weak var label: UILabel!
    
    override func viewDidLoad() {
        super.viewDidLoad()
    
        label.adjustsFontSizeToFitWidth = true
        
        label.text = "adjustsFontSizeToFitWidthを使用"       
    }

}

結果

4B653302-C756-4816-9F24-748E6E72D795_1_201_a.jpeg

終わり

ご指摘、ご質問などありましたら、コメントまでお願い致します。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?