From 00664c2bd91616e035df7df11e40293e25c6126a Mon Sep 17 00:00:00 2001 From: Mike Kavouras Date: Sun, 9 Aug 2015 20:25:52 -0400 Subject: [PATCH] Update 2015_08_09.md --- lessons/week-4/2015_08_09.md | 1 + 1 file changed, 1 insertion(+) diff --git a/lessons/week-4/2015_08_09.md b/lessons/week-4/2015_08_09.md index 54d2697..02a6c5e 100644 --- a/lessons/week-4/2015_08_09.md +++ b/lessons/week-4/2015_08_09.md @@ -72,3 +72,4 @@ https://developer.apple.com/library/ios/documentation/iPhone/Reference/UIPickerV > * Head over to `CQColorPickerViewController.h`. Create a new property: `@property (nonatomic, weak) iddelegate;`. This is creating a property of type `id` called `delegate`. The stuff in the <> is saying that this object must conform to the `CQColorPickerViewViewControllerDelegate`. > * In `CQColorTableViewController.m`, import `CQColorPickerViewControllerDelegate`. Make `CQColorTableViewController` conform to the `CQColorPickerViewControllerDelegate` protocol and implement the one method that we created, `colorPickerViewController:didPickColor:` +