Signin/Signup with: 
Welcome, Guest
Username: Password: Remember me
Questions about iOS development and PDF

TOPIC:

Page position on zoom 9 years 2 months ago #8498

  • emanuele
  • emanuele's Avatar
  • Offline
  • User is blocked
  • User is blocked
  • Posts: 580
  • Thank you received: 67
You can open a new ticket (that is private) here: www.radaeepdf.com/support/tickets and attach the pdf file

Please Log in or Create an account to join the conversation.

Page position on zoom 9 years 2 months ago #8499

  • wdbutt
  • wdbutt's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 17
  • Thank you received: 0
Ok please check ticket. I created new ticket.

Please Log in or Create an account to join the conversation.

Page position on zoom 9 years 2 months ago #8516

  • imran.nazeer
  • imran.nazeer's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 27
  • Thank you received: 0
I'm facing the same issue.
apparently it stops my production too :(

Please Log in or Create an account to join the conversation.

Last edit: by imran.nazeer.

Page position on zoom 9 years 2 months ago #8517

  • emanuele
  • emanuele's Avatar
  • Offline
  • User is blocked
  • User is blocked
  • Posts: 580
  • Thank you received: 67
Hi,

the issue is already been solved.
check the Knowledge Base to search from the first page ("Search from the first page" article)

Please Log in or Create an account to join the conversation.

Page position on zoom 9 years 2 months ago #8518

  • imran.nazeer
  • imran.nazeer's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 27
  • Thank you received: 0
Is this one ?
Scroll horizontally with UIScrollView paging (page by page)
Limit horizontal page change when a page is zoomed

Please Log in or Create an account to join the conversation.

Page position on zoom 9 years 2 months ago #8519

  • imran.nazeer
  • imran.nazeer's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 27
  • Thank you received: 0
App crashed in single zoom itself.
I dont know whats wrong with PDFViewer. Regression issues.

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if (m_cur_page > 0 && m_zoom > 1 && (self.contentOffset.x * m_scale + m_w > [m_view vGetPage:m_cur_page-1].GetX)){
#if DOUBLE_PAGE == 1
if (UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) || m_cur_page % 2 == 0)
#endif
self.contentOffset = CGPointMake(([m_view vGetPage:m_cur_page-1].GetX / m_scale) - (m_w / m_scale), self.contentOffset.y);
}

if (m_cur_page + 1 < m_doc.pageCount && m_zoom > 1 && (self.contentOffset.x * m_scale < [m_view vGetPage:m_cur_page+1].GetX + [m_view vGetPage:m_cur_page+1].GetWidth)){

#if DOUBLE_PAGE == 1
if (UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) || m_cur_page % 2 != 0)
#endif

self.contentOffset = CGPointMake(([m_view vGetPage:m_cur_page+1].GetX / m_scale) + ([m_view vGetPage:m_cur_page+1].GetWidth / m_scale), self.contentOffset.y);
}
[m_view vMoveTo:self.contentOffset.x * m_scale :self.contentOffset.y * m_scale];
[self refresh];
CGRect rect = CGRectMake( self.contentOffset.x, self.contentOffset.y, m_w/m_scale, m_h/m_scale );
m_child.frame = rect;
m_child.backgroundColor = [[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0];

}

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum