我知道我可以通過使用自動收縮來動態改變UIlabel的字體大小。但是沒有UIbuttons的自動收縮屬性,Xcode Swift:如何根據按鈕的大小動態更改按鈕的字體大小?
所以我怎麼能根據我的按鈕的大小動態地改變我的按鈕的字體大小?
代碼:
進口的UIKit
類的ViewController:{的UITableViewController
@IBAction func myButt(_ sender: UIButton) {}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
myButt.titleLabel?.adjustsFontSizeToFitWidth = true
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")! as UITableViewCell
return cell
}
}
的[調整文本的字體大小,以適應的UIButton]可能的複製(https://stackoverflow.com/questions/32561435/adjust-font-size-of-text-to-fit-in-uibutton ) –