mirror of https://github.com/SnapKit/SnapKit
Add explicit self for clarity
This commit is contained in:
parent
c00af52ae3
commit
238e4ccf4b
6
docs.md
6
docs.md
|
@ -314,10 +314,10 @@ class MyViewController: UIVewController {
|
|||
|
||||
self.view.addSubview(tableView)
|
||||
tableView.snp.makeConstraints { (make) -> Void in
|
||||
make.top.equalTo(topLayoutGuide.snp.bottom)
|
||||
make.top.equalTo(self.topLayoutGuide.snp.bottom)
|
||||
make.left.equalTo(view)
|
||||
make.right.equalTo(view)
|
||||
make.bottom.equalTo(bottomLayoutGuide.snp.top)
|
||||
make.bottom.equalTo(self.bottomLayoutGuide.snp.top)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -341,7 +341,7 @@ class MyViewController: UIVewController {
|
|||
|
||||
self.view.addSubview(tableView)
|
||||
tableView.snp.makeConstraints { (make) -> Void in
|
||||
make.top.equalTo(safeAreaLayoutGuide.snp.bottom)
|
||||
make.top.equalTo(self.safeAreaLayoutGuide.snp.bottom)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue