現在、基本的なログイン ページを使用して、ユーザーがアプリにアクセスできるかどうかを確認するアプリに取り組んでいます。このフレームワークを使用して、単純な Web スクリプトからユーザー名とパスワードを使用するこのチュートリアルの助けを借りて、ログイン部分を作成しました。
他の誰かがそれに取り組んでいるか、私の問題を解決してくれることを願っています。アクティビティ インジケーターを表示したくありません。MBProgressHUDをアクティビティ インジケーターとして使用しています。
だから私はそれを試してみましたが、アプリがURLに接続しているときにアクティビティインジケータを表示することはできません. ログイン プロセスをシミュレートする悪い接続をいくつか実行しましたが、アプリが URL に接続しているときにアクティビティ インジケーターが表示されません。エラーが発生した場合にのみ表示され、成功時に何らかの種類の読み込みが表示される唯一のことは、読み込みが完了するまで、ログインボタンが押された状態が「アクティブ」(青色で強調表示) であることです。
ユーザーがユーザー名とパスワードを入力してログインボタンをクリックしたときに実行されるコードは次のとおりです。
// Login button
- (IBAction)loginBtnClicked:(id)sender
{
// Show the activity indicator
[HUD showUIBlockingIndicatorWithText:@"Loggar in..."];
@try {
if([[userNameTxtField text] isEqualToString:@""] || [[passwordTxtField text] isEqualToString:@""] ) {
// No username or password entered
[self alertStatus:@"Du måste ange användarnamn och lösenord" :@"Något gick fel!"];
// Hide activity indicator
[HUD hideUIBlockingIndicator];
} else {
NSString *post =[[NSString alloc] initWithFormat:@"username=%@&password=%@",[userNameTxtField text],[passwordTxtField text]];
NSLog(@"PostData: %@",post);
NSURL *url=[NSURL URLWithString:@"http://www.nebulon.se/json/sendus/jsonlogin.php"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
//[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]];
NSError *error = [[NSError alloc] init];
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %d", [response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300){
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [SBJsonParser new];
NSDictionary *jsonData = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
NSLog(@"%@",jsonData);
NSInteger success = [(NSNumber *) [jsonData objectForKey:@"success"] integerValue];
NSLog(@"%d",success);
if(success == 1){
// Login success, grant user access to app
NSLog(@"Login SUCCESS");
[self loginSuccess];
// Hide activity indicator
[HUD hideUIBlockingIndicator];
// Store username
NSString *userName = [userNameTxtField text];
NSUserDefaults *UserDefaults = [NSUserDefaults standardUserDefaults];
[UserDefaults setObject:userName forKey:@"userName"];
[UserDefaults synchronize];
[self dismissViewControllerAnimated:NO completion:nil];
} else {
// Login error
NSString *error_msg = (NSString *) [jsonData objectForKey:@"error_message"];
[self alertStatus:error_msg :@"Inloggningen misslyckades"];
[self loginFailed];
// Hide activity indicator
[HUD hideUIBlockingIndicator];
}
} else {
// Login error
if (error) NSLog(@"Error: %@", error);
[self alertStatus:@"Ingen nätverksuppkoppling hittades." :@"Ett fel har inträffat!"];
[self loginFailed];
// Hide activity indicator
[HUD hideUIBlockingIndicator];
}
}
}
@catch (NSException * e) {
// Login error
NSLog(@"Exception: %@", e);
[self alertStatus:@"Inloggningen misslyckades." :@"Ett fel har inträffat!"];
[self loginFailed];
// Hide activity indicator
[HUD hideUIBlockingIndicator];
}
}