gpt4 book ai didi

ios - 如何使用 Nib 文件在 UIViewController 中添加两个 UIImageView?

转载 作者:行者123 更新时间:2023-11-28 23:08:26 25 4
gpt4 key购买 nike

我必须为相应的方向显示两个不同的图像。我使用 Nib 文件在一个 UIImageView 中添加了两个图像。我想在 iPad 纵向模式下显示 image1.png,在横向模式下显示 image2.png。任何人都可以建议我如何在 UIViewController 中通过 Nib 文件添加两个 UIImageView 吗?请建议 iPad nib 文件的任何教程。提前致谢。

最佳答案

您必须在 View Controller 的 shouldAutorotate 方法中更改 UIImageView 的图像:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

if ( (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) && (interfaceOrientation == UIInterfaceOrientationLandscapeRight) ) {
// Set image in landscape mode
[imageView setImage:[UIImage imageNamed:@"image1.png"]];
}
else
// Set image in portrait mode
[imageView setImage:[UIImage imageNamed:@"image2.png"]];
}

希望对你有帮助:)

关于ios - 如何使用 Nib 文件在 UIViewController 中添加两个 UIImageView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8834120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com