要使用Swift添加标签或文本,可以使用UIKit框架中的UILabel类或UITextView类。
示例代码:
let label = UILabel(frame: CGRect(x: 50, y: 50, width: 200, height: 30))
label.text = "Hello, World!"
self.view.addSubview(label)
示例代码:
let textView = UITextView(frame: CGRect(x: 50, y: 100, width: 200, height: 100))
textView.text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
self.view.addSubview(textView)
请注意,以上示例代码仅演示了如何创建和设置基本的标签或文本视图,实际使用时可以根据需求进行进一步的样式和布局调整。
领取专属 10元无门槛券
手把手带您无忧上云