How do you mean?
I have a textview on interface builder hooked up to an IBOutlet and a property synthesized in DetailViewController.m (txtDetail)...
I was trying to see to start off with (before even thinking about adding a date) I could just add some text in when the user clicks onto UITextView however that doesn't work either:
PHP:
- (void)textViewDidBeginEditing:(UITextView *)textView {
self.txtDetail.text = [self.txtDetail.text stringByAppendingString:@"Hello!"];
}
Unless i've got the wrong end of the stick completely on how to run the method?