From 79b9d54bf44834a2a76be6889b9834c7593cbf6d Mon Sep 17 00:00:00 2001 From: Mary Anthony Date: Wed, 13 Nov 2019 10:20:22 -0800 Subject: [PATCH] Correcting capitalization of signIn Signed-off-by: Mary Anthony --- _ios/tutorial.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_ios/tutorial.md b/_ios/tutorial.md index 751363b2..1d04c583 100644 --- a/_ios/tutorial.md +++ b/_ios/tutorial.md @@ -570,7 +570,7 @@ In this section, you edit the `ViewController.swift` file using the storyboard a ![](images/add-action.gif) 5. Set the **Connection** to `Outlet`. -6. Name the new section `signinButton`. +6. Name the new section `signInButton`. ![](images/signinbutton.png) @@ -594,7 +594,7 @@ In this section, you edit the `ViewController.swift` file using the storyboard a } @IBOutlet weak var nameLabel: UILabel! - @IBOutlet var signinButton: UIButton! + @IBOutlet var signInButton: UIButton! } ``` @@ -604,7 +604,7 @@ In this section, you edit the `ViewController.swift` file using the storyboard a ```xml - + ``` @@ -647,11 +647,11 @@ this application in your mobile add for now. In XCode, do the following; let name = retrievedUserData?.profile?.name ?? "Nameless Person" self.nameLabel?.text = "Hello, \(name)" self.nameLabel?.isHidden = false - self.signinButton?.setTitle("Sign Out", for: .normal) + self.signInButton?.setTitle("Sign Out", for: .normal) print("UI update SIGNED_IN") } else { self.nameLabel?.text = "hello-blockstack-ios" - self.signinButton?.setTitle("Sign into Blockstack", for: .normal) + self.signInButton?.setTitle("Sign into Blockstack", for: .normal) print("UI update SIGNED_OUT") } }