Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Objective-C 中实现一个灵活的模块来处理本地和推送通知,这个模块需要是灵活的,以便它可以重复使用并通过最小的调整导入到其他应用程序中。
我有一些想法,但我想知道是否有一种设计模式可以简化这种实现。
提前感谢=)
似乎最好的模式是使用NSInvocation的命令模式,因此通知可以调用一个方法,而调用者在运行时调用它。还有什么建议吗??