在我的应用程序中,我希望将数据从注册视图控制器发送到登录视图控制器,将登录视图控制器发送到SWRevealViewController。我在RegistrationViewController中发送这样的, 在我的登录视图控制器中,我创建了像这样的NSString
"@property (nonatomic) NSString *login;"
在我的RegistrationViewController中获取这样的字符串,
UIStoryboard *user = self.storyboard;
LoginViewController *vc = [user instantiateViewControllerWithIdentifier:@"VC"];
vc.login = @"1";
[self presentViewController:vc animated:YES completion:nil];
在我的SWRevealViewController中创建了这样的字符串
@property (strong, nonatomic) NSString *isMenu;
但我没有将该字符串输入我的LoginViewController。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
SWRevealViewController *ivc = [storyboard instantiateViewControllerWithIdentifier:@"SWRevealViewController"];
[self presentViewController:ivc animated:YES completion:nil];
我在附上我的图片