I want to show some text and pdf file in a webview at a time.
is there any possibility..
i had tried using
NSString *htmlString = [NSString stringWithFormat:@"<p>some text which i need to show above pdf</p><img src=\"file://%@\">",@"FR.pdf"];
NSString *bundleP = [[NSBundle mainBundle] resourcePath];
NSURL *fileURL = [NSURL fileURLWithPath:bundleP];
[pdfWebView loadHTMLString:htmlString baseURL:fileURL];
This shows the text and only the first page of pdf file,..
Thanks in advance
Use another way to load pdf and above the
webView
add aUILabel
to show the text. As you see pdf is treated as aimage
so that only one page is showed.