问题描述
let myButton = UIButton()
myButton.setimage(#imageLiteral(resourceName: "cross"),for: .normal)
myButton.tintColor = #colorLiteral(red: 1.0,green: 1.0,blue: 1.0,alpha: 1.0)
view.addSubview(myButton)
我想设置按钮,使其位于屏幕左上方。我尝试使用CGRect框架,但没有达到我想要的。我试图弄清楚如何在安全区域中放置按钮的左侧,并在安全区域中放置按钮的顶部,尽管我不知道该怎么做。 (我对编码有些陌生,因此一直使用情节提要...)
解决方法
搜索“自动布局”教程。
但是,让您开始...
let myButton = UIButton()
myButton.setImage(#imageLiteral(resourceName: "cross"),for: .normal)
myButton.tintColor = #colorLiteral(red: 1.0,green: 1.0,blue: 1.0,alpha: 1.0)
myButton.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(myButton)
let g = view.safeAreaLayoutGuide
NSLayoutConstraint.activate([
// constrain button 20-pts from top and leading
myButton.topAnchor.constraint(equalTo: g.topAnchor,constant: 20.0),myButton.leadingAnchor.constraint(equalTo: g.leadingAnchor,])