Вы можете использовать CFNotificationCenter для отправки Darwin-уведомлений из вашего dylib в приложение.Это ограничение в том, что никакие пользовательские данные не могут быть переданы, но вы можете по крайней мере уведомить приложение о событии.Подробнее об этом на https://developer.apple.com/library/IOs/#documentation/CoreFoundation/Reference/CFNotificationCenterRef/Reference/reference.html
Example of registering and posting:
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(),NULL, &NotificationReceivedCallback,(CFStringRef)MyNotificationString, NULL, CFNotificationSuspensionBehaviorCoalesce);
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter() , CFSTR(MyNotificationString), NULL, NULL, YES);