UIWebview后面的ASIHTTPRequest身份验证表单

时间:2014-01-31 07:27:48

标签: ios uiwebview asihttprequest

我正在加载webView。

- (void)loadWebView
    {
            NSURL *url = [NSURL URLWithString:defUrl];    
            self.aRequest = [ASIHTTPRequest requestWithURL:url];
            [self.aRequest setValidatesSecureCertificate:NO];
            self.aRequest.shouldPresentAuthenticationDialog = YES;

            [self.aRequest setDelegate:self];
            [self.aRequest startAsynchronous];


            if(!HUD.superview)
                [self.view.window addSubview:HUD];
            [HUD show:YES];

    }

enter image description here

当我尝试登录时(点击“执行此操作”) - 身份验证表单显示在我的Uiwebview后面。 enter image description here

我怎么能解决这个问题?

0 个答案:

没有答案