do you use
@property(nonatomic,retain) UITextView *yourTextViewName;
then
@synthesize yourTextViewName;
in the .m file?
If so, use the following code in viewDidLoad after updating the value to verify:
NSLog(@"Text View Value = %@",yourTextViewName.text);
source share