我在UIWebview中向我的应用添加了条款和条件.我真正想知道的是,我可以将其显示为逐页的pdf文档,还是应该使用任何其他方法? App商店会接受pdf格式吗?
解决方法
是的,这可以使用UIWebview完成,肯定会被Apple接受.
如果您尝试从Web URL显示PDF文件,请使用以下代码.
NSURL *targetURL = [NSURL URLWithString:@"http://yourdomain.com/file_toopen.pdf"]; NSURLRequest *request = [NSURLRequest requestWithURL:targetURL]; [webView loadRequest:request];
或者,如果您的应用程序中捆绑了PDF文件,请使用以下代码.
Nsstring *path = [[NSBundle mainBundle] pathForResource:@"filetoopen" ofType:@"pdf"]; NSURL *targetURL = [NSURL fileURLWithPath:path]; NSURLRequest *request = [NSURLRequest requestWithURL:targetURL]; [webView loadRequest:request];