So I have a UITextView that I\'m using to allow the user to submit some text.
My problem is, I can\'t seem to figure out how to allow the user to \'Cancel\' by tappi
This is an old post, but I was implementing this solution when i found something a lot simpler (maybe it wasn't available back then).
[self.myTextView endEditing:YES];
I'm using a UITableView, so I put this line on the didSelectRowAtIndexPath: method. So far, so good...