gpt4 book ai didi

ios - 如何将 UIView 粘贴到 iOS 7 上的 UIWindow 顶部

转载 作者:行者123 更新时间:2023-11-29 12:31:49 25 4
gpt4 key购买 nike

我有一个自定义的 UIView,即使界面方向发生变化,我也想将其固定在 UIWindow 的顶部。这是我的纵向 View

enter image description here

问题是之前的 iOS 8 UIWindow 坐标系没有随着方向的改变而改变。所以我需要手工进行所有计算。第一件事是更改 UIView 的转换,我使用此方法执行此操作

 -(CGFloat)angleForOrientation:(UIInterfaceOrientation)orientation
{
CGFloat angle;
switch (orientation) {
case UIInterfaceOrientationLandscapeLeft:
angle = -M_PI /2.0;
NSLog(@"UIInterfaceOrientationLandscapeLeft");
break;

case UIInterfaceOrientationLandscapeRight:
angle = M_PI /2.0;
NSLog(@"UIInterfaceOrientationLandscapeRight");
break;

case UIInterfaceOrientationPortraitUpsideDown:
angle = M_PI;
NSLog(@"UIInterfaceOrientationPortraitUpsideDown");
break;

default:
angle = 0;
NSLog(@"UIInterfaceOrientationPortrait");
break;

}
return angle;
}

第二件事是以某种方式将实际坐标系映射到 UIWindow 坐标系,保持不变。那么我应该如何计算自定义 UIView 的框架,即使用户将 View 旋转到其他方向,我也会将相同大小的 UIView 粘贴到屏幕的顶部中心?例如,这是 View 在横向中的样子

enter image description here

顺便说一句,这张图片是从 iOS 8 版本生成的。为此,我执行以下操作

   self.frame =  CGRectMake(window.bounds.size/2-50, 0, 100, 100);
CGFloat angle = [self angleForOrientation:orientation];
self.transform = CGAffineTransformMakeRotation(angle);

我需要做一些类似于 iOS 7 的事情。我该如何实现?

感谢您的帮助!

最佳答案

所以最后我想出了如何实现它。

我创建了以下方法来计算根据给定边界将 View 固定在顶部的矩形。

-(CGRect)getTopRectForBounds:(CGRect)bounds orientation:(UIInterfaceOrientation)orientation window:(UIWindow *)window
{
CGRect newRect;
CGFloat statusBarHeight = [self getStatusBarHeight];
CGSize screenSize = window.screen.bounds.size;
CGFloat sW = screenSize.width;
CGFloat sH = screenSize.height;
CGFloat W = rect.size.width;
CGFloat H = rect.size.height;
switch (orientation) {
case UIInterfaceOrientationLandscapeLeft:
newRect = CGRectMake(statusBarHeight, (sH-W)/2, H,W);
break;
case UIInterfaceOrientationLandscapeRight:
newRect = CGRectMake(sW-H-statusBarHeight, (sH-W)/2, H,W);
break;
case UIInterfaceOrientationPortraitUpsideDown:
newRect = CGRectMake((sW-W)/2, sH-H-statusBarHeight, W,H);
break;
default:
newRect = CGRectMake((sW-W)/2, statusBarHeight, W,H);
break;
}
return newRect;
}

然后只要方向改变,我就改变框架。所以首先我听 Orientation changes

 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameOrOrientationChanged:) name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameOrOrientationChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];

然后在方向更改事件处理程序中更改变换和框架。 (查看我的问题以查看处理转换的方法)

CGRect bounds = CGRectMake(0, 0, 100, 100);
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
self.frame = [self getTopRectForBounds:bounds orientation:orientation window:self.window]
CGFloat angle = [self angleForOrientation:orientation];
self.transform = CGAffineTransformMakeRotation(angle);

关于ios - 如何将 UIView 粘贴到 iOS 7 上的 UIWindow 顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27486161/

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