How to exit CKEditor Keybord in iOS7 when clicking on the navigation bar buttons?

Hello friends. I use CkEditor in iOS7, Xcode 5 for editing in html, and then the CKEditor keyboard appears the same way as now, I want enter image description hereto cancel the CKEditor keyboard shape on the right navigation buttons. This is not related to either UITextField or UITextView, because I already tried to access the delegates UITexField and UITextView, but it does not work.

+4
source share
1 answer

you may try

[self.view endEditing:YES];

on the navigation navigation buttons

+1
source

All Articles