繁体   English   中英

停止为动画加载图像后,Webview内容不可读

[英]Webview content is not readable after stop animating loading image

我正在构建一个iPhone应用程序,其中有两个视图,一个用于登录视图,另一个用于Web视图。 当用户输入登录凭据时,它将重定向到Web视图。 从登录视图加载Webview时,加载时间太长。 因此,我使用alertview来显示加载图像。

@interface FocusViewController ()
@end

@implementation FocusViewController

@synthesize txtsecurecode;
@synthesize webView;
@synthesize OrganizationCode;

UIActivityIndicatorView *indicator;
UIAlertView *alert;

- (void)viewDidLoad
{
[super viewDidLoad];
appDelegate = (FocusAppDelegate *)[[UIApplication sharedApplication]delegate];

if(appDelegate.data.strOrganizationCode == nil || appDelegate.data.strAccessCode == nil)
{
    NSLog(@"YOUR FIRST SCREEN");
    _loginView.hidden = NO;
     webView.hidden = YES;
}
else
{
    NSLog(@"LOAD WEBVIEW DIRECTLY\n");
    NSLog(@"Organization Code -> %@ \n Secure Access Code -> %@",appDelegate.data.strOrganizationCode,appDelegate.data.strAccessCode);

    OrganizationCode.text = appDelegate.data.strOrganizationCode ;
    txtsecurecode.text = appDelegate.data.strAccessCode;
    [self loginClicked:nil];

     webView.hidden = NO;
    _loginView.hidden = YES;

   }
  }

- (IBAction)loginClicked:(id)sender {

@try {

    if([[txtsecurecode text] isEqualToString:@""]  || [[OrganizationCode text] isEqualToString:@""] ) {
        [self alertStatus:@"Please enter Access code" :@"Login Failed!":0];
    }
    else
    {
        NSString *post =[[NSString alloc] initWithFormat:@"txtsecurecode=%@ @&password=%@",[txtsecurecode text],[OrganizationCode text]];

       NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];

        NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://myexample.com/AccountService/security/ValidateAccess?accesscode=%@&companycode=%@&type=1", txtsecurecode.text, OrganizationCode.text]];

        NSString *responseData = [[NSString alloc]initWithData:[NSData dataWithContentsOfURL:url] encoding:NSUTF8StringEncoding];

        if([responseData isEqualToString:@""]){
            [self alertStatus:@"Please enter valid Access Code" :@"Login Failed !" :0];
        }
        else
        {
            appDelegate.data.strOrganizationCode = OrganizationCode.text;
            appDelegate.data.strAccessCode = txtsecurecode.text;

            [FocusAppDelegate addCustomObjectToUserDefaults:appDelegate.data key:kCredentails];

            //Updated
            _loginView.hidden = YES;
             webView.hidden = NO;

            responseData = [responseData stringByReplacingOccurrencesOfString:@" "" " withString:@""];
            NSString* encodedString = [responseData stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

            NSLog(@"Response ==> %@" ,encodedString);

            alert = [[[UIAlertView alloc] initWithTitle:@"Loading\nPlease Wait..." message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil] autorelease];
             [alert show];

            UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
            indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50);
                            [indicator startAnimating];
                            [alert addSubview:indicator];
                            [indicator release];

            webView.backgroundColor = [UIColor clearColor];
            webView.opaque = NO;
            webView.delegate = self;
            webView.frame = self.view.bounds;

            NSString* urlTwo = [[encodedString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
                                stringByReplacingOccurrencesOfString:@"%22" withString:@""];

            NSURL *url2;

            if([urlTwo hasPrefix:@"http://"]){
                url2 = [NSURL URLWithString:urlTwo];
            }else{
                url2 = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@" , urlTwo]];
            }

            NSLog(@"url2:%@", url2);

            NSURLRequest *requestObj = [NSURLRequest requestWithURL:url2];

            [webView loadRequest:requestObj];

            [[self view] addSubview:webView];

        }
    }

}

@catch (NSException * e) {
    NSLog(@"Exception: %@", e);
    [self alertStatus:@"Login Failed." :@"Login Failed!" :0];
}
}

 -(void)webViewDidStartLoad:(UIWebView *)webView{
NSLog(@"webViewDidStartLoad");
[self.view addSubview:self.indicator];
 alert.hidden = NO;

 }

 - (void) webViewDidFinishLoad:(UIWebView *)webView {
 NSLog(@"webViewDidFinishLoad");
[self.indicator removeFromSuperview];
[self.alert dismissWithClickedButtonIndex:1 animated:NO] ;

}

- (IBAction)backgroundClick:(id)sender
{
[txtsecurecode resignFirstResponder];
[OrganizationCode resignFirstResponder];
}
@end

在显示Webview中的内容之前,正在显示加载图像并正常工作。 但是webview的内容不可编辑,并且保持静态,因为我认为我使用了'web view.hidden = YES'。 当我注释警报方法并运行时,Webview的内容也是可编辑的,并且可以按要求正常运行。 加载图片停止加载后,我需要加载url的内容。

我建议从具有WebView的Viewcontroller中显示活动指示器,并实现WebView Delegate方法

- (void)webViewDidStartLoad:(UIWebView *)webView
{
    [actvityIndicator startAnimating];
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    [actvityIndicator stopAnimating];
}

这将使您的Webview保持互动状态,并在页面完全加载之前显示指示器

您可以尝试这样的事情。 代理在.h文件中很重要

FocusViewController.h

@interface FocusViewController : UIViewController <UIWebViewDelegate> {
    UIActivityIndicatorView *indicator;
}

FocusViewController.m

- (void)viewDidLoad
{
    // Loading Indicator
    indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

    [indicator setColor:[UIColor colorWithRed:50.0/255.0 green:120.0/255.0 blue:200.0/255.0 alpha:1.0]];

}

- (void)webViewDidStartLoad:(UIWebView *)webView
{
    [indicator startAnimating];
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    [indicator stopAnimating];
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM