我想为我的iPhone编写一个应用程序,并且想要添加一个“按钮”,以便可以向该应用程序添加一个预先配置的标签(在代码中配置)。我怎样才能做到这一点?
答案 0 :(得分:-1)
很抱歉第一次误会。假设您在情节提要中创建了按钮并在代码中进行了链接:
@IBOutlet weak var myButton: UIButton!
@IBAction func myButtonPressed(_ sender: Any) {
// Create the label with its dimensions
let label = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 21))
// Set the label center point
label.center = CGPoint(x: 160, y: 285)
// Align the text to the center of the label
label.textAlignment = .center
// Set the label text
label.text = "New label!"
// Add the label to the main view
self.view.addSubview(label)
}
您应该修改最后一行,以将标签完全添加到所需的视图中。