私はiphoneを初めて使っています。私は最初のアプリに取り組んでいます。私はユーザー名とパスワードのテキストフィールドを含むログインビューを持っています。私は次のコードでログインページを検証しようとしています。しかし、動作していません。 アラートビューが表示されるたびに、今何ができますか? このコードまたは変更されたコードについての提案はありますか?iphoneのログイン画面
- (IBAction) login: (id) sender { NSString *lakshmi; NSString *narayana; NSLog(@"login %@",usernameField.text); if ((usernameField.text== lakshmi)&& (passwordField.text==narayana)) { [self.view addSubview:Link_view]; NSLog(@"sucess"); } else { NSLog(@"INVALID"); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Please Enter User Name & Password" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; }
ありがとうございますアランゼイーノ – user559080