diff --git a/docs.md b/docs.md index 0bce1e4..b095728 100644 --- a/docs.md +++ b/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) } }