├── .gitignore ├── AnnotationKit.podspec ├── AnnotationKit ├── Category │ ├── NSDictionary+AnnotationKit.h │ └── NSDictionary+AnnotationKit.m ├── Core │ ├── AKEngine.h │ ├── AKEngine.m │ ├── AnnotationMacro.h │ ├── PHAnnotationHandler.h │ ├── PHAnnotationHandler.m │ └── metamacro.h ├── EventCenter │ ├── LifeCycleAnnnotation.h │ └── LifeCycleAnnnotation.m ├── Router │ ├── AKRouteAnnotation.h │ ├── AKRouteAnnotation.m │ ├── AKRouter.h │ └── AKRouter.m └── install.sh ├── AnnotationKitDemo ├── AnnotationKitDemo.xcodeproj │ └── project.pbxproj ├── AnnotationKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ProfileController.h │ ├── ProfileController.m │ ├── ViewController+Counter.h │ ├── ViewController+Counter.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── BussinessOneDylib │ ├── BizOneController.h │ ├── BizOneController.m │ └── BussinessOneDylib.podspec ├── BussinessTwoDylib │ ├── BizTwoController.h │ ├── BizTwoController.m │ └── BussinessTwoDylib.podspec └── Podfile ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/.gitignore -------------------------------------------------------------------------------- /AnnotationKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit.podspec -------------------------------------------------------------------------------- /AnnotationKit/Category/NSDictionary+AnnotationKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Category/NSDictionary+AnnotationKit.h -------------------------------------------------------------------------------- /AnnotationKit/Category/NSDictionary+AnnotationKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Category/NSDictionary+AnnotationKit.m -------------------------------------------------------------------------------- /AnnotationKit/Core/AKEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/AKEngine.h -------------------------------------------------------------------------------- /AnnotationKit/Core/AKEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/AKEngine.m -------------------------------------------------------------------------------- /AnnotationKit/Core/AnnotationMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/AnnotationMacro.h -------------------------------------------------------------------------------- /AnnotationKit/Core/PHAnnotationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/PHAnnotationHandler.h -------------------------------------------------------------------------------- /AnnotationKit/Core/PHAnnotationHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/PHAnnotationHandler.m -------------------------------------------------------------------------------- /AnnotationKit/Core/metamacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Core/metamacro.h -------------------------------------------------------------------------------- /AnnotationKit/EventCenter/LifeCycleAnnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/EventCenter/LifeCycleAnnnotation.h -------------------------------------------------------------------------------- /AnnotationKit/EventCenter/LifeCycleAnnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/EventCenter/LifeCycleAnnnotation.m -------------------------------------------------------------------------------- /AnnotationKit/Router/AKRouteAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Router/AKRouteAnnotation.h -------------------------------------------------------------------------------- /AnnotationKit/Router/AKRouteAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Router/AKRouteAnnotation.m -------------------------------------------------------------------------------- /AnnotationKit/Router/AKRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Router/AKRouter.h -------------------------------------------------------------------------------- /AnnotationKit/Router/AKRouter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/Router/AKRouter.m -------------------------------------------------------------------------------- /AnnotationKit/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKit/install.sh -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/Info.plist -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ProfileController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ProfileController.h -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ProfileController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ProfileController.m -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ViewController+Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ViewController+Counter.h -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ViewController+Counter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ViewController+Counter.m -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ViewController.h -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/ViewController.m -------------------------------------------------------------------------------- /AnnotationKitDemo/AnnotationKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/AnnotationKitDemo/main.m -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessOneDylib/BizOneController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessOneDylib/BizOneController.h -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessOneDylib/BizOneController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessOneDylib/BizOneController.m -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessOneDylib/BussinessOneDylib.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessOneDylib/BussinessOneDylib.podspec -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessTwoDylib/BizTwoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessTwoDylib/BizTwoController.h -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessTwoDylib/BizTwoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessTwoDylib/BizTwoController.m -------------------------------------------------------------------------------- /AnnotationKitDemo/BussinessTwoDylib/BussinessTwoDylib.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/BussinessTwoDylib/BussinessTwoDylib.podspec -------------------------------------------------------------------------------- /AnnotationKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/AnnotationKitDemo/Podfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqisheng/AnnotationKit/HEAD/README.md --------------------------------------------------------------------------------