gpt4 book ai didi

ios - 子类 uiwindow 不会旋转到水平方向

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:45:55 26 4
gpt4 key购买 nike

我尝试子类化 UIWindow 以覆盖 statusBar 以显示某些内容。但是当我的应用程序的方向 == UIInterfaceOrientationLandscapeLeft 或右时,此自定义窗口不会旋转。我该如何修复它?

- (id)init {
if (self = [super initWithFrame:CGRectMake(0, 0, 1024, 20)]) {
self.windowLevel = UIWindowLevelStatusBar;

UILabel *label = [[UILabel alloc] initWithFrame:self.frame];
label.text = @"testing";
label.backgroundColor = [UIColor blackColor];
label.textColor = [UIColor whiteColor];
label.textAlignment = UITextAlignmentCenter;
[self addSubview:label];
NSLog(@"label %@", label);
[label release];

[self makeKeyAndVisible];
}

return self;
}

最佳答案

我不认为 UIWindows 本身实际上会旋转,而是您添加到窗口的 UIViewController 是处理旋转的那个。

关于ios - 子类 uiwindow 不会旋转到水平方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9287720/

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