我正在为iPad的客户制作一本杂志,他们会包含PDF页面,内部链接到视频/其他页面等.
这可以通过标准PDF控件等完成吗?
最佳答案 你可能需要用UIWebview做这样的事情.
是的,果然.在Google上搜索后,我发现了这个 – PDF Viewer Tutorial
并且,请注意,如果您将PDF文件包含为资源文件,则可以:
NSString *pdfPath = [[NSBundle mainBundle] pathForResource:@"pdfFileName" ofType:@".pdf"];
NSURL *pdfURL = [NSURL URLWithString:pdfPath];