/System/Library/PrivateFrameworks/AppSupport.framework中的
CPDistributedMessagingCenter
Documentation here:
Example codes of mine here:
https://github.com/H2CO3/PwnTube
https://github.com/H2CO3/Cereal
2. CMessagePort
3. mmap
.......
如果你还不死心,非要用此NSDistributedNotificatio
//发送方
@interface NSDistributedNotificatio
+ (id)defaultCenter;
- (void)postNotificationName:(NSString *)aName object:(NSString *)anObject userInfo:(NSDictionary *)aUserInfo;
@end
//接收方
@interface
NSDistributedNotificatio
+ (id)defaultCenter;
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(NSString *)anObject;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(NSString *)anObject;
@end
重新定以后,就可以和原来一样用了,因为在ios上这些库没有被导出,用class-dump还是能够看到的。