如何解决如何在Swift中设置等于安全区域的按钮约束?
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,])
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。