是否可以在applicationDidFinishLaunching中重用appdelegate?

时间:2009-09-24 11:46:44

标签: iphone nsxmlparser xml-parsing uiapplicationdelegate

我正在开发标签栏应用程序。

我有五个标签。

对于每个标签,我都有单独的导航控制器。

对于每个选项卡的表View我想从Web服务加载数据。

我可以通过单独的 xmlparser 类使用 appdelegate 对其进行初始化,然后在 applicationDidFinishLaunching 中调用它来为一个标签执行此操作。

我无法为其他标签执行此操作。我认为appdelegate冲突或者是其他问题或任何其他解决方案。

1 个答案:

答案 0 :(得分:2)

创建一个新的appdelegate;

MyAppdelegate *appDelegate = (MyAppdelegate*)[[UIAplication sharedApplication] delegate];

并调用applicationDidFinishLaunching。