UILabel文字 左右添加空格文本不居中?
解决方案:
1、textAlignment = .center
2、只在后面添加空格即可居中
if let title = model.title {
markLabel.text = "\(title) "
}
UILabel文字 左右添加空格文本不居中?
解决方案:
1、textAlignment = .center
2、只在后面添加空格即可居中
if let title = model.title {
markLabel.text = "\(title) "
}