加载UIWebView时出现问题



我正试图编写一个SplitView控制程序,在该程序中,按下masterViewController中的表单元格会导致相关网页加载到详细信息视图控制器中。我在详细视图控制器中有以下方法,我可以确认它被调用并接收到正确的输入:

  -(void)masterAction:(id)sender  {
    NSString *http = @"http://";
    http = [http stringByAppendingString:sender];
    _urlString = http;

    NSURL *url= [NSURL URLWithString:_urlString];
    [self.web loadRequest:[NSURLRequest requestWithURL:url]];
     }

但是,没有加载任何内容。有什么想法吗?我能够加载任何内容的唯一方法是在我的viewDidLoad方法中插入类似于以下内容的内容:

NSURL *url= [NSURL URLWithString:@"http://www.google.com];
[self.web loadRequest:[NSURLRequest requestWithURL:url]];

该方法的调用使用:

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSDictionary *thread = [self.issueData objectForKey:@"responseData"];
    NSDictionary *feed = [thread objectForKey:@"feed"];

    NSArray *entries = [feed objectForKey:@"entries"];
    NSDictionary *posts = entries[indexPath.row];
    NSString *urlString = [posts objectForKey:@"link"];
    NSArray *split = [urlString componentsSeparatedByString:@"url=http://"];
    NSString   *url = [split objectAtIndex:1];
    [self.delegate masterAction:url];
}

设置webview的委托。

试试这个。

NSString *myUrl = @"http://www.YourWebSite.com";
NSURL *webUrl = [NSURL URLWithString:myUrl];
[webObj loadRequest:[NSURLRequest requestWithURL:webUrl]];

我在一个测试项目中复制了这段代码,唯一可能出错的代码是如果你忘记在域名前的http://后面放www。尝试将您的masterAction方法更改为以下方法:

- (void) masterAction: (id) sender
{
    if (![sender isKindOfClass:[NSString class]]) return;
    NSString *http = @"http://www.";
    NSString *urlString = [http stringByAppendingString:sender];
    NSURL *url = [NSURL URLWithString:urlString];
    [self.web loadRequest:[NSURLRequest requestWithURL:url]];
}

如果不是这个问题,并且发送到方法的字符串包含www.,请尝试设置UIWebView的委托,以查看加载请求时是否引发任何错误。

相关内容

  • 没有找到相关文章

最新更新