У меня есть существующее приложение, которое в настоящее время имеет встроенные файлы справки; Я пытаюсь изменить их, поэтому они идут в Интернет для локализованных файлов справки. Это мой код:Почему этот код НЕ отображает Google.com
// make the popover
UIViewController* popoverContent = [UIViewController new];
UIView* popoverView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 450, 500)];
popoverView.backgroundColor = [UIColor colorWithWhite:(CGFloat)1.0 alpha:(CGFloat)1.0]; // frame color?
popoverContent.view = popoverView;
//resize the popover view shown in the current view to the view's size
popoverContent.preferredContentSize = CGSizeMake(450, 500);
NSURL *indexURL = [NSURL URLWithString:@"google.com"];
// add the UIWebView for RichText
webView = [[UIWebView alloc] initWithFrame:popoverView.frame];
webView.backgroundColor = [UIColor whiteColor]; // change background color here
// add the webView to the popover
[webView loadRequest:[NSURLRequest requestWithURL:indexURL]]; // load it...
[popoverView addSubview:webView];
// if previous popoverController is still visible... dismiss it
if ([popoverController isPopoverVisible]) {
[popoverController dismissPopoverAnimated:YES];
}
//create a popover controller to display the HELP text
popoverController = [[UIPopoverController alloc] initWithContentViewController:popoverContent];
[popoverController presentPopoverFromRect:((UIButton *)boHelpGeneralSetup).frame inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
Этот код работает, когда файл справки встроен; почему он не работает, когда я пытаюсь получить файл с веб-страницы в Интернете?
Когда какой файл вложен? – lluisgh
HTML-файл, содержащий * точный * словосочетание, которое находится на веб-странице. Это не относится к вопросу. – SpokaneDude
попытайтесь включить весь адрес с http: // –