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+Mediatorcategory. This enables any class to communicate with the pureMVC framework using method signatures from theIMediatorprotocol. Additionally, the category provides-(void)registerand-(void)unregistermethods for registering and unregistering ViewControllers / IMediators with theView.Note: Only ViewControllers or other classes representing the presentation layer should implement the
NSObject+Mediatorcategory.Mediatorclass is being removed(void)notifyObserver:(id)notificationnow ignores the leak warning from xcode-(id)viewComponentand code>-(void)setViewComponent:(id)viewComponent have been removed from theIMediatorprotocol since they are redundant now.+(NSString *)NAMEwithinProxiesandNSObject+Mediatornow return their classnames usingNSStringFromClass([self class])Note: Code that uses previous versions of pureMVC are not compatible with these changes.
Refactoring your code
NSObject+Mediatorcategory within all ViewController classes, that need to receive or send Notifications from or to pureMVCMediatormethods to yourUIViewControllerFacaderegistrations in your entire codeMediator/UIViewControllercommunication 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/