views:

41

answers:

1

Hi guys,

I have a Flip View and on this "flipped" view I have a UItextView, (NOT a textField).

I need to be able to display a rightBarButtonItem when the editing of the textView begins and then to click this rightBarButtonItem to resign the keyboard.

There are lots of similar problems such as this but none of them are on a flip view.

I really appreciate the help. This has been driving me crazy.

Thanks,

Stefan.

+1  A: 

You need to implement the UITextViewDelegate protocol in your view controller and implement either the textViewDidBeginEditing: method, or the textViewDidChange: method.

Can Berk Güder
Hi,I had tried this but it didn't work. Since then I have decided that flip view is too much hassle so I have gone back to the simple push view controller.Thanks for the suggestion.
StefanHanotin