Skip to content

Instantly share code, notes, and snippets.

@nvkiet
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save nvkiet/4ebcc90302ddc2a626f9 to your computer and use it in GitHub Desktop.

Select an option

Save nvkiet/4ebcc90302ddc2a626f9 to your computer and use it in GitHub Desktop.
Increase keyboard window level
NSArray* array = [UIApplication sharedApplication].windows;
for(id windowObject in array){
NSString* class = NSStringFromClass([windowObject class]);
if([class isEqualToString:@"UITextEffectsWindow"]){
UIWindow* keyboardWindow = (UIWindow*)windowObject;
keyboardWindow.windowLevel = self.view.window.windowLevel+1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment