MyViewController vc = AppDelegate.storyboard.InstantiateViewController ("MyViewController") as MyViewController;
vc.SomeProperty = someValue;
this.NavigationController.PushViewController (vc, true);
我不知道为什么我的属性值会在ViewWillAppear或ViewDidAppear上丢失,...属性为null。有什么想法吗?
答案 0 :(得分:0)
对不起我的迟到回复,但我正在打电话。 :/ 我发现了: 问题是,我在故事板中使用了push方法,并且在ViewController中使用了... touchUpInside + = Handle .... 现在我重写了PrepareForSegue方法并使用DestinationViewController来更改我的属性。现在它有效。 这是我的第一个带故事板的项目,所以缺少一些经验。 :)
但无论如何,谢谢你的帮助。