- Posts: 20
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Questions about iOS development and PDF
PDF Query
IP: 192.168.0.70
12 years 2 weeks ago #5620
by hassan31
Hi,
This is Hassan, using your PDF Viewer library in iOS. I've one issue with that I'm trying to achieve it.
The issue is:
I want to show only a cover page (that is first page) in a landscape mode, and the remaining will display the combined 2 pages. Right now I'm facing that on the start of PDF Viewer 2 pages are displayed, I want to display just one page at the start and 2 pages in the rest of PDF Viewer.
I've tried in the code to fix it but I'm unable to fix it, do you have any idea about this? If yes then please share it with me, so that I can accomplish my task as soon as possible as it is very necessary.
Thanks
This is Hassan, using your PDF Viewer library in iOS. I've one issue with that I'm trying to achieve it.
The issue is:
I want to show only a cover page (that is first page) in a landscape mode, and the remaining will display the combined 2 pages. Right now I'm facing that on the start of PDF Viewer 2 pages are displayed, I want to display just one page at the start and 2 pages in the rest of PDF Viewer.
I've tried in the code to fix it but I'm unable to fix it, do you have any idea about this? If yes then please share it with me, so that I can accomplish my task as soon as possible as it is very necessary.
Thanks
IP: 192.168.0.70
12 years 2 weeks ago - 12 years 2 weeks ago #5622
by radaee
in PDFView.m u can see:
m_view = [[PDFVDual alloc] init:false :NULL :0 :NULL :0];
modify it to:
m_view = [[PDFVDual alloc] init:false :NULL :0 :NULL :0];
modify it to:
Code:
bool cover = false;
m_view = [[PDFVDual alloc] init:false :NULL :0 :&cover :1];
Last edit: 12 years 2 weeks ago by .
IP: 192.168.0.70
12 years 1 week ago #5650
by hassan31
Time to create page: 0.394 seconds