gpt4 book ai didi

iphone - 除非点击按钮两次,否则 iOS 网页不会加载

转载 作者:行者123 更新时间:2023-11-29 11:10:44 25 4
gpt4 key购买 nike

- (IBAction)saveButton:(id)sender
{
NSURL *yourURL = [NSURL URLWithString: webpageURLLabel.text ];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:yourURL];
if ([self checkURL] == YES) {
[webpagePreview loadRequest:request];
webpagePreview.scalesPageToFit = YES;
}
}

- (BOOL)checkURL
{
NSString *arrayOfStrings = [NSArray arrayWithObjects:@"http://", @"https://", nil];
NSString *stringToSearchWithin = webpageURLLabel.text;

BOOL found=NO;
for (NSString *s in arrayOfStrings)
{
if ([stringToSearchWithin rangeOfString:s].location != NSNotFound)
{
found = YES;
break;
} else
{
webpageURLLabel.text = [NSString stringWithFormat:@"http://%@", webpageURLLabel.text];
found = YES;
break;
}
}
return found;
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
webpageTitleLabel.text = [webpagePreview stringByEvaluatingJavaScriptFromString:@"document.title"];
}

我调试了它,看起来应该可以加载。但出于某种原因,当您第一次点击按钮时,没有任何反应。

如果用户再次点击该按钮,它会正常工作。有什么建议吗?

最佳答案

在我看来,第一次单击按钮时,webpageURLLabel.text 可能没有有效的 URL,因此请求无效。然后,当 [self checkURL] 被调用时,webpageURLLabel.text 被设置为一个有效的 URL,因此下一次点击有效。

也许您应该在创建 NSURLRequest 之前调用 -checkURL

关于iphone - 除非点击按钮两次,否则 iOS 网页不会加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11704793/

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