如何在Xcode中获取AppDelegate中的textfield值

时间:2015-04-30 04:20:38

标签: xcode

我在视图中有2个文本字段。我想在AppDelagate.m中读取这些字段的值。
很奇怪,这对我的所有方法都不起作用。
我在这里发布了我的代码:
在第一视图中

// Set
localStorage.setItem("user", userId);

// Get
var userId= localStorage.getItem("user");


你能救我吗?

1 个答案:

答案 0 :(得分:0)

你需要读取AppDelegate中的outlet值,这很奇怪。 AppDelegate用于处理您的应用程序委托方法,例如当您的应用程序启动或应用程序应该进入后台时。
在didFinishLaunchingWithOptions中,出口将为nil 。您应该在viewDidLoad中执行这些任务。