textView のテキストをラベルに渡そうとしてviewController
いtextView
ますlabel
初め
.m
textView= [[UITextView alloc] initwithFrame...
//ビューを変更し、テキストビューをラベルに送信
-(void) gotoSecond:(id) sender{
Second *sec = [[Second alloc]initWithNibName: @"Second" bundle:nil];
[sec.note setText:textView.text]
[self presentViewController:sec animated: YES completion:NULL];
}
Second .h
//ペン先に付いている
@propery (nonatomic, strong) IBOutlet UILabel *note;