我在网上看到很多示例都loadString
调用了将静态 HTML 加载到UIWebView
.
我正在尝试在prepareForSegue()
我的应用程序的功能中构建相同的功能。
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
MYCLASSController *destViewController = segue.destinationViewController;
if ([segue.identifier isEqualToString:@"fromListToDetail"]) {
// let's suppose getHtmlTextForItem returns the NSString @"<b>Some HTML text</b> with formatting"
[destViewController.htmlText loadHTMLString: [db getHtmlTextForItem:bookId] baseURL:nil];
}
}
但它不加载任何东西。你知道如何解决这个问题吗???难道我做错了什么?