Remove Toolbar: One of my client requirements is to remove the default toolbar for the keyboard. I found numerous examples for iOS7 to remove toolbar from the keyboard window. But it did not work for iOS8. So i came to following solution after some Research on Google: Step1: First we need to add observer for keyboard notification: [[ NSNotificationCenter defaultCenter ] addObserver : self selector : @selector ( removeKeyboardTopBar :) name : UIKeyboardWillShowNotification object : nil ]; Step 2: We need to implement the method for observer: - ( void )removeKeyboardTopBar { } Step 3: Find the keyboard window from all the application windows: - ( void )removeKeyboardTopBar { UIWindow *keyboardWindow = nil ; UIView * toolBarContainer = nil ; NSArray * windows = [[ UIApplication sharedApplication ] windows ]; for ( U...