iOS 根据字符串和字体计算所需label宽度

有时候需要根据一个字符串的内容和所用字体,计算显示这个字符串所需要的label宽度。可以使用以下方法计算:

var greeting = "Hello, playground"

let size = greeting.size(withAttributes: [.font: UIFont.systemFont(ofSize: 12)])

print(size.width)

输出:

98.94140625

然后使用ceil()对计算结果向上取整,即可得到所需要的宽度

上一篇:function-


下一篇:Building a RESTful Web Service