陈斌彬的技术博客

Stay foolish,stay hungry

利用 sharedApplication 来访问主控的 Delegate 的方法

在子窗口的控制器中,利用如下代码:

AppDelegate * delegate = [[UIApplication sharedApplication]delegate];  
[delegate changView:@"CustomerGridView"];  

来调用主控的委托中的方法。

1.AppDelegate * delegate = [[UIApplication sharedApplication]delegate];

其中 AppDelegate 是程序的主控委托。

2.[delegate changView:@"CustomerGridView"];  

其中 changeView 的方法是 AppDelegate 中的实例方法。