iOS 9 iPad Keyboard get rid of “undo view”
问题 How is it possible to get rid of this annoying "undo view" shown on the iPad in iOS 9. Below is my own keyboard, above my accessory view. (just for testing purposes in this ugly color). Can someone please tell me how to remove it? Thanks in advance. 回答1: For Swift 2.0, You can place this code in viewDidLoad and it will work like a charm. if #available(iOS 9.0, *) { let item = yourTextView.inputAssistantItem item.leadingBarButtonGroups = [] item.trailingBarButtonGroups = [] } else { //