我有两张图片:
Help-Portrait.png(320 x 480)
Help-Landscape.png(480 x 320)
当用户点击任何视图上的帮助按钮时,需要向他们显示正确的图像,该图像也应该在设备执行时旋转。我尝试将imageView添加到窗口和导航控制器视图中。
出于某种原因,我遇到了这个问题。 谁能说清楚我做错了什么?
UIImage *image = nil;
CGRect frame;
if (UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation])) {
image = [UIImage imageNamed:@"Help-Portrait.png"];
frame = CGRectMake(0, 0, 320, 480);
} else {
image = [UIImage imageNamed:@"Help-Landscape.png"];
frame = CGRectMake(0, 0, 480, 320);
}
if (!helpImageView) {
helpImageView = [[UIImageView alloc] initWithFrame:frame];
helpImageView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
helpImageView.image = image;
}
[[UIApplication sharedApplication] setStatusBarHidden:YES];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(helpImageTapped:)];
helpImageView.userInteractionEnabled = YES;
[helpImageView addGestureRecognizer:tap];
[self.view addSubview:helpImageView];
[tap release];
willRotateToInterfaceOrientation:
if(helpImageView) {
[(id)[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];
if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
helpImageView.image = [UIImage imageNamed:@"Help-Portrait.png"];
} else {
helpImageView.image = [UIImage imageNamed:@"Help-Landscape.png"];
}
}
旋转设备时,图像和框架不会改变,最终会在屏幕左侧显示三分之二的肖像图像。
我想要的是它为正确的方向显示正确的图像。此外,我想动画图像旋转,但这是一个侧面问题
答案 0 :(得分:0)
您需要调整按钮图像的位置在ViewController的shouldAutorotateToInterfaceOrientation
方法中(为您链接的文档)。
做类似的事情:
- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
UIImage *image = NULL;
if (UIInterfaceOrientationIsPortrait(interfaceOrientation))
{
image = [UIImage imageNamed:@"Help-Portrait.png"];
} else {
image = [UIImage imageNamed:@"Help-Landscape.png"];
}
[yourButton setImage: image forState: UIControlStateNormal]
return YES;
}
答案 1 :(得分:0)
shouldAutorotateToInterfaceOrientation
。此方法仅用于确定是否应该发生旋转,而不是其他任何内容。
您应该使用didRotateFromInterfaceOrientation:
willAnimateRotationToInterfaceOrientation:duration
代替。
didRotateFromInterfaceOrientation:
- interfaceOrientation
已设置在UIViewController
上,因此您可以获得当前的定位。在这种情况下,旋转动画已经完成。
willAnimateRotationToInterfaceOrientation:duration
- 此方法的好处是执行时间。您处于旋转动画内部,因此在旋转动画完成后更改UI时,您将不会遇到效果不佳的效果。
答案 2 :(得分:0)
通过以下代码实现了它的工作:
- (void)showHelpImage {
NSString *imageName = @"Help_Portrait.png";
CGRect imageFrame = CGRectMake(0, 0, 320, 480);
helpImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
helpImageView.frame = imageFrame;
[self.view addSubview:helpImageView];
[self updateHelpImageForOrientation:self.interfaceOrientation];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(helpImageTapped:)];
helpImageView.userInteractionEnabled = YES;
[helpImageView addGestureRecognizer:tap];
[self.view addSubview:helpImageView];
[tap release];
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[self updateHelpImageForOrientation:toInterfaceOrientation];
}
- (void)updateHelpImageForOrientation:(UIInterfaceOrientation)orientation {
NSString *imageName = nil;
CGRect imageFrame = helpImageView.frame;
if (orientation == UIInterfaceOrientationPortrait || orientation == UIInterfaceOrientationPortraitUpsideDown) {
imageName = @"Help_Portrait.png";
imageFrame = CGRectMake( 0, 0, 320, 480);
} else if (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight) {
imageName = @"Help_Landscape.png";
imageFrame = CGRectMake( 0, 0, 480, 320);
}
helpImageView.image = [UIImage imageNamed:imageName];
helpImageView.frame = imageFrame;
}
得出的想法来自: http://www.dobervich.com/2010/10/22/fade-out-default-ipad-app-image-with-proper-orientation/