我有一个应用程序。在此单击Upload
按钮时,a会UITableView
出现在 aUIPopOverController
中,其中包含一些条目。单击任何这些条目时,应在UIWebView
我UIDetailView
的SplitView
应用程序的 w 中打开相应的站点。
我正在使用以下代码行::
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
hUrl = [kk objectAtIndex:indexPath.row];
hUrl = [Url stringByReplacingOccurrencesOfString:@" " withString:@"_"];
NSString *hisPage= [[NSUserDefaults standardUserDefaults] stringForKey:@"url_preference"];
Page = [hisPage stringByAppendingString:@"/index.php/"];
Page = [hisPage stringByAppendingString:hUrl];
NSURL *Url = [NSURL URLWithString:Page];
NSLog(@"%@", Url);
NSURLRequest *request = [NSURLRequest requestWithURL:Url];
self.detailViewController.webView.scalesPageToFit = YES;
[self.detailViewController.webView loadRequest:request];
}
出现UITableView
在UIPopoverController
. 但是,我无法加载相应的网页。有人可以帮我解决这个问题吗?谢谢并恭祝安康。