我已经为页面翻转操作实现了AFKPageflipper,就像翻板一样,app.But翻盖动画在iOS 7上没有正常工作,因为expected.But在下面的版本上很好地工作。我想知道这个issue.Can,任何人都可以建议我解决这个问题。
提前谢谢。
发布于 2014-01-27 23:33:49
请按照这里的说明更改AFKPageFlipper.m上的代码,https://github.com/mtabini/AFKPageFlipper/issues/28
我让它做了以下修改:
if ([self respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)])
[self drawViewHierarchyInRect:self.bounds afterScreenUpdates:YES];
else // iOS 6
[self.layer renderInContext:UIGraphicsGetCurrentContext()];https://stackoverflow.com/questions/19176424
复制相似问题