gpt4 book ai didi

iphone - shouldAutorotateToInterfaceOrientation 不改变对象位置

转载 作者:行者123 更新时间:2023-11-28 18:40:29 25 4
gpt4 key购买 nike

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{

if (interfaceOrientation == (UIInterfaceOrientationPortrait))
[self embedYouTube:yout frame:CGRectMake(30, 155, 260, 200)];

if (interfaceOrientation == (UIInterfaceOrientationLandscapeRight))
[self embedYouTube:yout frame:CGRectMake(30, 155, 400, 200)];

if (interfaceOrientation == (UIInterfaceOrientationLandscapeLeft))
[self embedYouTube:yout frame:CGRectMake(30, 155, 400, 200)];


if (interfaceOrientation == (UIInterfaceOrientationPortraitUpsideDown))
[self embedYouTube:yout frame:CGRectMake(30, 155, 260, 200)];

return YES;

}

我试图在旋转时更改我的 embedYouTube 的大小和位置,但它不起作用。

它可能在旋转,但不会改变位置和大小。

最佳答案

尝试将您的代码移动到 willAnimateRotationToInterfaceOrientation: 方法

关于iphone - shouldAutorotateToInterfaceOrientation 不改变对象位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11523153/

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