I have implemented AFKPageflipper for page flip action as like flip board app.But flip animation was not working properly on iOS 7 as expected.But its working fine on below version. I am wondering about this issue.Can anyone please suggest me solution to this.

Thanks in advance.

有帮助吗?

解决方案

Please change your code on AFKPageFlipper.m according to the instructions here https://github.com/mtabini/AFKPageFlipper/issues/28

I got it working with the following change:

if ([self respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)])
  [self drawViewHierarchyInRect:self.bounds afterScreenUpdates:YES];
else // iOS 6
  [self.layer renderInContext:UIGraphicsGetCurrentContext()];
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top