C/Objective-C convenience methods that wrap NSNotificationCenter
Useful for easy NSNotification posting.
Simply plop this repo into your project, and you should be good to go.
LPNotificationCenterPost(LPObject_notification_name_sampleEventDidOccur);
NSDictionary *userInfo = @
{
LPObject_notification_userInfo_key_sampleKey : @"value"
};
LPNotificationCenterPostWithInfo(LPObject_notificationName_sampleEventDidOccur, userInfo);
See LPNotificationCenter.h for more.