有时候需要根据一个字符串的内容和所用字体,计算显示这个字符串所需要的label宽度。可以使用以下方法计算:
var greeting = "Hello, playground"
let size = greeting.size(withAttributes: [.font: UIFont.systemFont(ofSize: 12)])
print(size.width)
输出:
98.94140625
然后使用ceil()
对计算结果向上取整,即可得到所需要的宽度
2024-02-22 15:15:04
有时候需要根据一个字符串的内容和所用字体,计算显示这个字符串所需要的label宽度。可以使用以下方法计算:
var greeting = "Hello, playground"
let size = greeting.size(withAttributes: [.font: UIFont.systemFont(ofSize: 12)])
print(size.width)
输出:
98.94140625
然后使用ceil()
对计算结果向上取整,即可得到所需要的宽度