[+] Create changePin function

This commit is contained in:
Hykilpikonna
2021-01-24 20:32:45 -05:00
parent e8da4650db
commit 75c3a6fe23
+11
View File
@@ -241,6 +241,17 @@ class FamilyVC: UIViewController
familyView.isHidden = true
}
}
/**
Called when the user clicks the change pin button
*/
@IBAction func btnChangePin(_ sender: Any)
{
enterPin("Change Pin", "Enter your OLD pin:")
{
print($0)
}
}
}
/**