I want to load long text in TextViews of different Views. The text should be divided to pages when it reaches end of the textviews. And the next textview must start with the con
How about assigning the total text to all of the text views. Then when ever we are moving from one text to another text view we just use the below function of the text view.
- (void)scrollRangeToVisible:(NSRange)range;
You would be deciding what that range should be initially, and then keep on altering it for every iteration until you reach end of string.