首先創建視圖控制器對象,然後將值分配給該屬性。
-(IBAction)onClick:(id)sender
{
SecondViewController *tempView = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
tempView. string1 = tfName.text;
[self.navigationController pushViewController:tempView animated:YES];
}
上
您SecondViewController.h
創建像
@Property(nonatomic, Strong)NSString *string1;
您的實現SecondViewController.m
的一個全局字符串systensize你的字符串像
@Synthesize string1;
最後調用像
- (void)viewDidLoad {
[super viewDidLoad];
if (string1.length >0)
label1.text=string1;
}
你有使用故事板嗎? –
您是使用故事板還是xib –
我正在使用.xib –