【Swift】AutoLayoutでUIViewを画面全体に表示する
コード
UIViewの拡張機能を記述
extension UIView {
func pin(to superView: UIView){
translatesAutoresizingMaskIntoConstraints = false
topAnchor.constraint(equalTo: superView.topAnchor).isActive = true
leadingAnchor.constraint(equalTo: superView.leadingAnchor).isActive = true
trailingAnchor.constraint(equalTo: superView.trailingAnchor).isActive = true
bottomAnchor.constraint(equalTo: superView.bottomAnchor).isActive = true
}
TableViewをコードで作成し画面全体に配置したい時などに使う
tableView.pin(to: view)
Author And Source
この問題について(【Swift】AutoLayoutでUIViewを画面全体に表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/nolf512/items/40d10669716dfb4da40b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .