how can i add page curl effect in pdf file?

本小妞迷上赌 提交于 2019-12-06 15:48:00

You should be able to do that through UIPageViewController-PDF (follow full instructions from the github page, though):

NSString *path = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"pdf"];
PageViewController *page = [[PageViewController alloc] initWithPDFAtPath:path];
[self presentViewController:page animated:YES completion:NULL];

On the other hand, Leaves should also work out of the box; if you get the sample app and replace the PDF file name that should be all.

If you cannot work it out, please, paste your code and explain in detail what does not work for you.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!