标签:
最简单的方式
在b文件中建立接收者
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(action) name:@"xxx" object:nil];
并在action中做出响应
在a文件中发送通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"xxx" object:nil];
要先建立接收者才可以 收到通知的
未完待续...
标签:
原文地址:http://www.cnblogs.com/isItOk/p/4773634.html