I have added two textview in iphone by this way. I have two UITextView A and B. I have added the UITextView B on UITextView A by like this,
[A addSubview:B];
[self.view addSubview:A];
while am start to type in textview, the text is appearing in both textview fine. When the text reach to the final line of the frame size it starting to scroll automatically in textview B but, textview A not scrolling automatically. It is possible to add UITextView subview of UITextView and access both two textview. Can any one please help me. Thanks in advance.
You can start with
delegate method. In this method you can set the string/text to your B text view like :
Hope it gives you an idea. (Not Fully tested code.)