StefanHanotin
StefanHanotin

Reputation: 301

iPhone Text View within a Flip View

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.

Upvotes: 0

Views: 223

Answers (1)

Can Berk Güder
Can Berk Güder

Reputation: 113310

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

Upvotes: 1

Related Questions