Re: UIScrollViewDelegate methods and touches with customized UITextView

2008-11-05 Thread Ignacio Enriquez
It's me again. Thanks Roland for your advices. Now, I have actually realized a way to handle touches and scrolling methods at the same time. Inside my UITextView subclass I wrote the touch regarding methods implementation. Then Inside the UIViewController subclass (wich has a instance of the UITe

Re: UIScrollViewDelegate methods and touches with customized UITextView

2008-11-01 Thread Roland King
yes there seems to be some confusion here. 1) the delegate for a UITextView is a UITextViewDelegate, the UIScrollViewDelegate is irrelevant. 2) It may well be that UITextView itself is a delegate of a scroll view behind the scenes and your override of its delegate method scrollViewDidScro

UIScrollViewDelegate methods and touches with customized UITextView

2008-11-01 Thread Ignacio Enriquez
Hello everyone, I am quite new in implementing Delegates protocols and assignating them. And I am having some kind of problems here. I am trying to get the exact position of a text (using offset method of UITextView) when scrolled for that reason I have decide to adopt UIScrollViewDelegate and im