You don't need to link the UIView as a delegate, because, it's the textView that you need as delegate..
you can set it in your code too. if you added the delegate (in your header file).
You can just do this
myTextView.delegate = self (in your viewDidLoad).
And then it should be triggered (if the correct myTextView is connected via IB), in other words -->
IBOutlet myTextView *myTextView;