UIWebView图像上传重新加载webview目标c

时间:2015-06-10 07:33:25

标签: ios objective-c iphone uiwebview

我正在使用UIWebview来显示用户个人资料详细信息。现在尝试上传图像时整个Webview重新加载并在上传之前显示回同一个阶段。

UIWebView *ProfileCellWebview = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, cell.layer.frame.size.width, (MainFrame.size.height - 210))];
            [ProfileCellWebview setBackgroundColor:[UIColor clearColor]];
            NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:USERPROFILEPUBLIC,self.appDelegate.currentUser.userId]];
            NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
            [ProfileCellWebview setDelegate:self];
            [ProfileCellWebview loadRequest:requestObj];
            [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
            [cell addSubview:ProfileCellWebview];

我在哪里做错了

1 个答案:

答案 0 :(得分:0)

实现代码以在viewDidLoad中加载网址。希望您在viewWillApear或viewDidApper中编写代码。