我正在尝试实现只有某些用户才能访问的代码。因此,当用户名在“用户名”文本字段中输入其名称时,它将返回UITableView中的值。当我使用用户名登录时,它不会显示数组并显示警报。我究竟做错了什么? usernameText是故事板的出口。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
LoginViewController *userInfo = [[LoginViewController alloc] init];
if ([userInfo.usernameTxt.text isEqualToString:@"username"])
{
_loginSuccess = [flashesArray count];
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Access Denied" message:@"Please Sign Up For This Services" delegate:self cancelButtonTitle:@"Dismiss" otherButtonTitles:nil, nil];
[alert show];
}
return _loginSuccess;
}
答案 0 :(得分:0)
您的代码中存在以下几个问题: