integration of a NSObject+Mediator category #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The following changes have been made
NSObject+Mediator
category. This enables any class to communicate with the pureMVC framework using method signatures from theIMediator
protocol. Additionally, the category provides-(void)register
and-(void)unregister
methods for registering and unregistering ViewControllers / IMediators with theView
.Note: Only ViewControllers or other classes representing the presentation layer should implement the
NSObject+Mediator
category.Mediator
class is being removed(void)notifyObserver:(id)notification
now ignores the leak warning from xcode-(id)viewComponent
and code>-(void)setViewComponent:(id)viewComponent have been removed from theIMediator
protocol since they are redundant now.+(NSString *)NAME
withinProxies
andNSObject+Mediator
now return their classnames usingNSStringFromClass([self class])
Note: Code that uses previous versions of pureMVC are not compatible with these changes.
Refactoring your code
NSObject+Mediator
category within all ViewController classes, that need to receive or send Notifications from or to pureMVCMediator
methods to yourUIViewController
Facade
registrations in your entire codeMediator
/UIViewController
communication code, in case you have anyExamples
A description including visual diagrams and examples for ios and osx can be found at:
http://www.reppa.net/puremvc-fur-ios-und-osx/