[英]UIView frame not updating size on time for creating scrolling text animation in UILabel
[英]Drawing text on UIView is better or using UILabel and updating text at run time?
标签更好,因为它更易于管理编辑,其中UIView给它增加了一层复杂性。 就性能而言,可能没有太大区别。 但是就编码和管理而言却有所不同。
最后,这取决于您的应用程序要求。
我建议使用UILabel代替UIView,因为它既是视图又是标签。
let yourLabel = UILabel(x0:, y:0, width:100, height:100)
yourLabel.backgroundColor = UIColor.red
yourLabel.textAligment = NSTextAligment.center
yourLabel.layer.cornerRadius = yourLabel.frame.size.widht/2
yourLabel.textColor = UIColor.white
yourLabel.text = "M"
self.view.addSubview(yourLabel)
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.