CocoaPods trunk is moving to be read-only. Read more on the blog, there are 11 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | May 2016 |
Maintained by JerryWong.
An observer for iOS developers.
[JWObserver observeDealloc:yourObj
owner:yourOwner
completionBlock:^(__kindof NSObject *target) {
NSLog(@"%@ dealloc", target);
...
}];[JWObserver unObserveDealloc:yourObj
owner:yourOwner];[JWObserver observeTarget:yourTarget
propertyName:@"yourPropertyName"
owner:yourOwner
completionBlock:^(__kindof NSObject *target, id oldValue, id newValue) {
...
}];[JWObserver unObserveTarget:yourTarget
propertyName:@"yourPropertyName"
owner:yourOwner];To integrate JWObserver into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod 'JWObserver'Then, run the following command:
$ pod install(MIT license)