客户端使用: notify_post("me.zaid.pandoravoteup"); 发送通知,参数为通知名字,这个要 系统唯一 服务端使用:CFNotificationCenterAddObserver 来接收通知,
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, Reboot, CFSTR("me.zaid.pandoravoteup"), NULL, CFNotificationSuspensionBehaviorCoalesce); 第三个参数为处理回调
具体例子看代码吧。
|