我想做一个 IF/Else 语句,只有当他输入正确的代码时才授予用户访问权限 - 例如,登录 - 如果他在用户名文本框中输入 John Smith,他将能够按登录按钮,否则将无法正常工作。
这是我的代码
if ([usernameText.text is EqualToString:@"jzarate"]) {
(insert code that grants functionality to the "log in button")
else ([insert code that does not grant functionality to the "log in button"])
我也想对由数字组成的密码做同样的事情