私にとっては、asi http request を実行しました。しかし、ログイン ページでこのメソッドを呼び出すと、偽のログインの認証アラート ビューを設定するにはどうすればよいですか。ASI HTTP Request のメソッドは以下のとおりです。
-(void) authenticate:(NSString*) uname password:(NSString*) pwd{
NSString *format = @"%s %d";
NSLog(format, __FUNCTION__);
myAppDelegate *appDelegate = (myAppDelegate *) [[UIApplication sharedApplication]delegate];
appDelegate.HUD.progress = 0.1f;
appDelegate.HUD.labelText = @"Authenticating...";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@/login",appDelegate.appData.server]];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
request.shouldPresentCredentialsBeforeChallenge = YES;
[request addBasicAuthenticationHeaderWithUsername:uname andPassword:pwd];
[request setDidFailSelector:@selector(authenticationFailed:)];
request.userInfo = [NSDictionary dictionaryWithObject:@"authenticate" forKey:@"type"];
[request setDelegate:self];
[request startAsynchronous];}