I have a C++ class that I recently renamed from *.cpp to *.mm to support objective-c. So I can add the following objective-c code.
[[NSNotificationCenter defa
Or you could also just use blocks and do:
[ [NSNotificationCenter defaultCenter] addObserverForName: @"notify" object: nil queue: nil usingBlock: ^ (NSNotification * note) { // do stuff here, like calling a C++ method } ];