From 47445b0e39de0e7625d3dbe527f5c39710a3f8c2 Mon Sep 17 00:00:00 2001 From: Kizito Nwose Date: Sat, 20 Oct 2018 16:25:27 +0100 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb20760..1c01b45 100644 --- a/README.md +++ b/README.md @@ -108,12 +108,12 @@ class DemoViewController: UIViewController, CountryPickerViewDelegate, CountryPi - Called before the internal UITableViewController is presented or pushed. ```swift - countryPickerView(_ countryPickerView: CountryPickerView, willShow viewController: UITableViewController) + func countryPickerView(_ countryPickerView: CountryPickerView, willShow viewController: UITableViewController) ``` - Called after the internal UITableViewController is presented or pushed. ```swift - countryPickerView(_ countryPickerView: CountryPickerView, didShow viewController: UITableViewController) + func countryPickerView(_ countryPickerView: CountryPickerView, didShow viewController: UITableViewController) ``` **Note:** `willShow` and `didShow` delegate methods are optional. Also, if the UITableViewController is presented(not pushed), it is embedded in a UINavigationController.