I need to implement a flexible module to handle Local and Push notifications in Objective-C, this module needs to be flexible so it can be reusable and imported to other apps with minimun adjustments.
I have a few ideas but I would like to know if there is a design pattern that eases this implementation.
Thanks in advance =)
Seems that the best patter is the Command Pattern using NSInvocation, so the notification can call a method and the invocator calls it on runtime. Any other suggestion??