yourViewController viewWillAppear
jus ....
-(void)viewWillAppear:(BOOL)animated
{
yourTextView.text=yourdata;
yourTextView.frame = CGRectMake(yourTextView.frame.origin.x, yourTextView.frame.origin.y, yourTextView.frame.size.width, yourTextView.contentSize.height);
float btnscreen = yourTextView.frame.origin.y + yourTextView.contentSize.height + 15;
yourButton.frame=CGRectMake(yourButton.frame.origin.x, btnscreen, yourButton.frame.size.width, yourButton.frame.size.height);
float lblscreen = yourButton.frame.origin.y + yourButton.frame.size.height + 10;
yourLable.frame=CGRectMake(yourLable.frame.origin.x, lblscreen, yourLable.frame.size.width, yourLable.frame.size.height);
}
, XIB , .m .....
, , , , UIScrollView scrollview, ...
, ...
:)