您好我正在开发的应用程序有问题,我有3个不同的视图,在第一个我有一个文本字段,我用来输入密码。当我登录IBAction时,以这种方式打开第二个视图
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard"
bundle:nil];
UIViewController *tbc = [storyboard instantiateViewControllerWithIdentifier:@"Login"];
[self presentViewController:tbc animated:YES completion:NULL];
登录并注销2次后(以相同的方式注销),UITextFiled变得不可编辑......我该如何解决这个问题?