1

我想使用事件在我的不同模块之间进行通信。IOS中有事件机制吗?我正在寻找类似于 Android 中的 BroadcastReceiver 的东西。

谢谢。铅。

4

1 回答 1

2

同一进程中不同模块之间:

这里 NSNotification 很酷:http:
//mobile.tutsplus.com/tutorials/iphone/ios-sdk_nsnotificationcenter/


进程之间

IOS 不提供任何真正的专用方法来执行此操作。但是您可以(很多人)为此使用自定义 url 方案:http:
//mobile.tutsplus.com/tutorials/iphone/ios-sdk-working-with-url-schemes/

于 2013-01-28T12:43:21.873 回答