UIImageView 没有正确旋转?
Posted
技术标签:
【中文标题】UIImageView 没有正确旋转?【英文标题】:UIImageView not rotating correctly? 【发布时间】:2012-05-08 18:27:40 【问题描述】:我在 UIViewController 中有一个 UIScrollView。它启用了滚动和缩放。它包含一个 UIImageView ,当用户旋转设备时,这个想法是图像保持居中。问题是,当设备旋转时,它实际上出现在左边而不是中心,它应该停留在哪里。这是我正在使用的代码。 UIScrollView 旋转时调用 set frame:
-(void)setFrame:(CGRect)frame
float previousWidth = self.frame.size.width;
float newWidth = frame.size.width;
[super setFrame:frame];
self.imageView.center = CGPointMake(self.bounds.size.width / 2, self.bounds.size.height / 2);
[self setupScales];
self.zoomScale = self.zoomScale * (newWidth / previousWidth);
【问题讨论】:
这些解决方案似乎都不起作用。 【参考方案1】:我在 uiscrollview 的子类中使用了以下 layoutsubviews 方法:
- (void)layoutSubviews
[super layoutSubviews];
if ([[self subviews] count] == 0)
return;
// center the image as it becomes smaller than the size of the screen
CGSize boundsSize = self.bounds.size;
CGRect frameToCenter = ((UIView*)[[self subviews] objectAtIndex:0]).frame;
// center horizontally
if (frameToCenter.size.width < boundsSize.width)
frameToCenter.origin.x = (boundsSize.width - frameToCenter.size.width) / 2;
else
frameToCenter.origin.x = 0;
// center vertically
if (frameToCenter.size.height < boundsSize.height)
frameToCenter.origin.y = ((boundsSize.height - frameToCenter.size.height) / 2);
else
frameToCenter.origin.y = 0;
((UIView*)[[self subviews] objectAtIndex:0]).frame = frameToCenter;
【讨论】:
这段代码看起来不错,但它无法识别 centeringYOffset 变量,我也不知道那可能是什么。 啊,是的。对不起。它只是子类上的一个属性,如果我想将事物居中更高或更低,可以选择性地设置它。您可能可以删除该位。【参考方案2】:您可能还需要设置滚动视图的contentOffset
属性
【讨论】:
【参考方案3】:如果滚动视图随着方向变化而调整大小,试试这个
self.imageView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin;
【讨论】:
以上是关于UIImageView 没有正确旋转?的主要内容,如果未能解决你的问题,请参考以下文章