I want to do curl on my PDF page in iOS. I have load my PDF to a web view, but I want to give effect on PDF page, so help me. I want to swipe to page turn and with swipe it curl.
NSString *path = [[NSBundle mainBundle] pathForResource:@"paper" ofType:@"pdf"];
_webView.autoresizingMask=(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);
NSURL *myUrl=[NSURL fileURLWithPath:path];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myUrl];
[_webView loadRequest:myRequest];
and in advance thanks to helper.