我有一个viewController
带有 atextView
和一个带有 a 的 secondviewControllerlabel
我正在尝试将 textView 中的文本传递给标签
第一的
.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;