Pass rotation event through UIWindow and UIViewController

172 Views Asked by At

Here is psuedo code for my tweak

SBSearchViewController vcont = ...;
UIWindow window = ...;
[window retain];
window.windowLevel = 9999*9999;
window.hidden = NO;
window.rootViewController = vcont;
[window addSubview:vcont.view];
[window makeKeyAndVisible];

When there is a rotation event the keyboard successfully rotates but the actual contents of the UIWindow does not. This is a common problem but I don't know how to fix it. Any ideas?

1

There are 1 best solutions below

2
On

Remove this line:

[window addSubview:vcont.view];