gpt4 book ai didi

ios - Wkwebview cangoback 给出错误的结果

转载 作者:行者123 更新时间:2023-12-01 21:56:51 28 4
gpt4 key购买 nike

如果 canGoBack,我将在 webview 中显示返回按钮是真的。

它工作正常,但对于一个特定的网页,即使没有返回页面,webview 说 cangoback 为 true 而 cangoback 应该为 false。

更新

这是初始化我的 webview 的代码片段

-(void)initWebView{    
WKUserContentController* userContentController = WKUserContentController.new;
NSString* documentCookie = [self documentCookie];
WKUserScript * cookieScript = [[WKUserScript alloc]
initWithSource: documentCookie
injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:NO];
// again, use stringWithFormat: in the above line to inject your values programmatically
[userContentController addUserScript:cookieScript];
WKWebViewConfiguration* webViewConfig = WKWebViewConfiguration.new;
webViewConfig.userContentController = userContentController;
self.webviewObj = [[WKWebView alloc] initWithFrame:CGRectMake(self.vuParent.frame.origin.x, self.vuParent.frame.origin.y, self.vuParent.frame.size.width, self.vuParent.frame.size.height) configuration:webViewConfig];
self.webviewObj.UIDelegate = self;
[self.webviewObj setBackgroundColor:[UIColor whiteColor]];

self.webviewObj.translatesAutoresizingMaskIntoConstraints=false;

[self.vuParent addSubview:self.webviewObj];

}

这是我在 webview 中加载请求的方式
-(void)completeWebRequest
{
NSString* urlToRequestStr = @"";


if ([[self targetUrl] length]) {
urlToRequestStr = [self targetUrl];
}


NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString: urlToRequestStr]];



if (self.isPOST) {

NSMutableData *body = [[NSMutableData alloc] initWithData:[self.postParams dataUsingEncoding:NSUTF8StringEncoding]];
NSString *postLength = [NSString stringWithFormat:@"%lu",(unsigned long)[body length]];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:body];
}

[self initWebView];
self.webviewObj.scrollView.scrollEnabled=false;
[self.view setBackgroundColor:[UIColor whiteColor]];
[self.webviewObj setOpaque:false];


self.webviewObj.navigationDelegate = self;



[self setOriginalUrlToRequest:tempRequest];
[[self webviewObj] loadRequest:tempRequest];
}

这是我检查是否需要显示后退按钮的方法。
  [self setBackButtonCheckTimer:[NSTimer timerWithTimeInterval:0.1 target:self selector:@selector(chkBackBtn) userInfo:nil repeats:true]];

- (void) chkBackBtn {

if ([[self webviewObj] canGoBack]) {
[[self navigationItem] setLeftBarButtonItem:[self bkButton]];
}
else{
[[self navigationItem] setLeftBarButtonItem:nil];
}
}

最佳答案

有一种方法可以使用它来调试此类问题。
canGoBack 方法基于 backForwardList .

您可以验证列表中的内容并进行更改。

关于ios - Wkwebview cangoback 给出错误的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61139755/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com