作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Nimbus framework 中的 NIPhotoAlbumScrollView一旦我旋转设备,显示的图像就会失去其中心位置...有人使用过这个组件并遇到了我同样的情况吗?
ps:我正在为NIPhotoAlbumScrollView及其NIPagingScrollViewPage使用(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)掩码
最佳答案
在相应的 View Controller 方法中调用 NIPhotoAlbumScrollView 的这些方法
- willRotateToInterfaceOrientation:duration:
- willAnimateRotationToInterfaceOrientation:duration:
像这样
- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation) toInterfaceOrientation { return YES; }
//====================================================================================================
- (void) willRotateToInterfaceOrientation: (UIInterfaceOrientation) toInterfaceOrientation duration: (NSTimeInterval) duration
{
[super willRotateToInterfaceOrientation: toInterfaceOrientation duration: duration];
[self.photoAlbumView willRotateToInterfaceOrientation: toInterfaceOrientation duration: duration];
}
//====================================================================================================
- (void) willAnimateRotationToInterfaceOrientation: (UIInterfaceOrientation) interfaceOrientation
duration: (NSTimeInterval) duration
{
[super willAnimateRotationToInterfaceOrientation: interfaceOrientation duration: duration];
[self.photoAlbumView willAnimateRotationToInterfaceOrientation: interfaceOrientation duration: duration];
}
关于iphone - NIPhotoAlbumScrollView : unable to adjust image after device rotation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9242780/
我正在使用 Nimbus framework 中的 NIPhotoAlbumScrollView一旦我旋转设备,显示的图像就会失去其中心位置...有人使用过这个组件并遇到了我同样的情况吗? ps:我正
我是一名优秀的程序员,十分优秀!