How do you connect the \"delegate\" outlet of a UITextView to a class that implements UITextViewDelegate protocol?
I can\'t seem to find an example in the docs
If you mean "how do I make an object that is created with code the delegate for my text view", just set the delegate property (this is what dragging in Interface Builder will do for you):
textView.delegate = yourDelegateObject;