-2

我正在开发一个应用程序。我在 viewcontroller1 中设置了通知。并关闭应用程序。

收到通知后,我将直接转到 viewcontroller1 xib 而不是 main xib。我写了这样的代码。但我的问题是在进入 viewcontroller1 xib 之后,它包含取消按钮。当我点击取消按钮时,我需要去 appdelegate 类。但它不去。当我来自 appdelegate 类时,那个取消按钮正在工作。但是当我直接来这堂课时它不起作用。

该取消方法包含[self.view dismissviewcontroller];,所以请告诉我当我单击取消按钮时如何进入 appdelegate 类。

4

1 回答 1

1
AppDelegate *appDelegate = (AppDelegate*) [[UIApplication sharedApplication] delegate];

获取 appdelegate 对象

于 2012-06-26T10:27:49.153 回答