Browse Source

Add explicit self for clarity

Robert Payne 8 years ago
parent
commit
238e4ccf4b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs.md

+ 3 - 3
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)
         }
     }