2010-06-27 88 views
0

此使用時,我在viewbase應用模板網絡代表問題

使用但是,當我用2次一UITabBarNavigation沒有工作的工作:S 18

-(void)viewDidLoad{ 
    [self.infoweb loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.myserver.com/info.php"]]]; 
    self.infoweb.delegate = self; 
} 


-(BOOL)infoweb:(UIWebView *)infoweb shouldStartLoadWithRequest:(NSURLRequest *)request 
               navigationType:(UIWebViewNavigationType)navigationType 
{ 
    NSString *host = request.URL.host; 
    if([host isEqualToString:@"myServerApp"]) 
    { 
    NSString *command = request.URL.path.lastPathComponent; 
    if([command isEqualToString:@"chargeInfo"]) 
    { 
     NSLog(@"Info to nslog..."); 
    } 
    return NO; 
    } 
    return YES; 
} 

有人能理解我:)和幫助我,我有2次和2個controleres這一代碼進入第二,我的網頁加載不錯,但問題是,didnt shouldStartLoadWithRequest沒有工作8-)幫助!

在我的接口工具的詳情我就與文件的所有者(WebView的filesowner)

回答

0

問題解決了連接:P

-(BOOL)**webView**:(UIWebView *)infoweb....