1

我有这个代码:

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    imageView.image = [UIImage imageNamed:@"image.png"];

    UIApplication *app = [UIApplication sharedApplication];

    [app addSubViewOnFrontWindow:imageView];

...

- (void)addSubViewOnFrontWindow:(UIView *)view {
    int count = [self.windows count];
    UIWindow *w = [self.windows objectAtIndex:count - 1];
    [w addSubview:view];
}

问题是,当应用程序旋转时,前面的视图不会旋转。它只是保持纵向。

我怎样才能让它与设备的其余部分一起正常旋转?

4

3 回答 3

1

我没试过这个,但UIWindow有一个属性rootViewController

窗口的根视图控制器。

@property(nonatomic, retain) UIViewController *rootViewController

讨论
根视图控制器提供窗口的内容视图。将视图控制器分配给此属性(以编程方式或使用 Interface Builder)将视图控制器的视图安装为窗口的内容视图。如果窗口具有现有的视图层次结构,则在安装新视图之前删除旧视图。

此属性的默认值为 nil。

可用性
适用于 iOS 4.0 及更高版本。


UIWindow.h中声明

由于您应该提供此根视图控制器,因此您应该能够将其添加到 rootViewContoller 的视图中,并正确处理 aout 旋转。


另一种解决方案可能是,您在呈现视图时将窗口与自定义窗口交换,并使用另一个视图控制器。您可以在TSAlertView的实现中看到这个技巧。

- (void) show
{
    [[NSRunLoop currentRunLoop] runMode: NSDefaultRunLoopMode beforeDate:[NSDate date]];

    TSAlertViewController* avc = [[[TSAlertViewController alloc] init] autorelease];
    avc.view.backgroundColor = [UIColor clearColor];

    // $important - the window is released only when the user clicks an alert view button
    TSAlertOverlayWindow* ow = [[TSAlertOverlayWindow alloc] initWithFrame: [UIScreen mainScreen].bounds];
    ow.alpha = 0.0;
    ow.backgroundColor = [UIColor clearColor];
    ow.rootViewController = avc;
    [ow makeKeyAndVisible];

    // fade in the window
    [UIView animateWithDuration: 0.2 animations: ^{
        ow.alpha = 1;
    }];

    // add and pulse the alertview
    // add the alertview
    [avc.view addSubview: self];
    [self sizeToFit];
    self.center = CGPointMake( CGRectGetMidX( avc.view.bounds ), CGRectGetMidY( avc.view.bounds ) );;
    self.frame = CGRectIntegral( self.frame );
    [self pulse];

    if ( self.style == TSAlertViewStyleInput )
    {
        [self layoutSubviews];
        [self.inputTextField becomeFirstResponder];
    }
}

@interface TSAlertOverlayWindow : UIWindow
{
}
@property (nonatomic,retain) UIWindow* oldKeyWindow;
@end

@implementation  TSAlertOverlayWindow
@synthesize oldKeyWindow;

- (void) makeKeyAndVisible
{
    self.oldKeyWindow = [[UIApplication sharedApplication] keyWindow];
    self.windowLevel = UIWindowLevelAlert;
    [super makeKeyAndVisible];
}

- (void) resignKeyWindow
{
    [super resignKeyWindow];
    [self.oldKeyWindow makeKeyWindow];
}

//

@end
于 2012-07-09T23:44:57.417 回答
1

添加一个带有新 rootviewController 的新窗口,并订阅它

[[NSNotificationCenter defaultCenter] addObserver:(id) selector:(SEL) name:UIDeviceOrientationDidChangeNotification object:nil];
于 2012-07-10T00:04:04.410 回答
0

Windows 不会自动旋转。曾经。您应该将此 imageView 添加到 UIViewController 的视图中,因为 UIViewController 已内置自动旋转。

如果您想使用 UIWindow 来保存所有视图,则需要编写自己的转换代码来处理旋转。

于 2012-07-09T01:50:57.250 回答