From cbcb05e56dd00dea91cee05451da0e878520c27c Mon Sep 17 00:00:00 2001 From: Ofer Morag Date: Fri, 28 Jul 2017 00:00:47 +0300 Subject: [PATCH 1/2] Update subclassing.md --- docs/_docs/subclassing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/subclassing.md b/docs/_docs/subclassing.md index e284f252c..2d52927b3 100755 --- a/docs/_docs/subclassing.md +++ b/docs/_docs/subclassing.md @@ -19,7 +19,7 @@ The most important thing to remember is that your init method must be capable of ### `-didLoad` -This method is conceptually similar to UIViewController's `-viewDidLoad` method and is the point where the backing view has been loaded. It is guaranteed to be called on the **main thread** and is the appropriate place to do any UIKit things (such as adding gesture recognizers, touching the view / layer, initializing UIKIt objects). +This method is conceptually similar to UIViewController's `-viewDidLoad` method; It’s called once and is the point where the backing view has been loaded. It is guaranteed to be called on the **main thread** and is the appropriate place to do any UIKit things (such as adding gesture recognizers, touching the view / layer, initializing UIKIt objects). ### `-layoutSpecThatFits:` From 5ccc9d09c356b1289f09b5ff2adb5c3eacf8022b Mon Sep 17 00:00:00 2001 From: Ofer Morag Date: Fri, 28 Jul 2017 19:35:59 +0300 Subject: [PATCH 2/2] Update subclassing.md Lowered-case the "i". --- docs/_docs/subclassing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/subclassing.md b/docs/_docs/subclassing.md index 2d52927b3..966d83144 100755 --- a/docs/_docs/subclassing.md +++ b/docs/_docs/subclassing.md @@ -19,7 +19,7 @@ The most important thing to remember is that your init method must be capable of ### `-didLoad` -This method is conceptually similar to UIViewController's `-viewDidLoad` method; It’s called once and is the point where the backing view has been loaded. It is guaranteed to be called on the **main thread** and is the appropriate place to do any UIKit things (such as adding gesture recognizers, touching the view / layer, initializing UIKIt objects). +This method is conceptually similar to UIViewController's `-viewDidLoad` method; it’s called once and is the point where the backing view has been loaded. It is guaranteed to be called on the **main thread** and is the appropriate place to do any UIKit things (such as adding gesture recognizers, touching the view / layer, initializing UIKIt objects). ### `-layoutSpecThatFits:`