├── .gitignore ├── LICENSE ├── README.md ├── WZLDemoCollection ├── WZLDemoCollection.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── WZLDemoCollection │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Biology.h │ ├── Biology.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Person.h │ ├── Person.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── WZLDemoCollectionTests │ ├── Info.plist │ └── WZLDemoCollectionTests.m ├── WZLSerializeKit.podspec └── WZLSerializeKit └── WZLSerializeKit.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/README.md -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/AppDelegate.h -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/AppDelegate.m -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Biology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Biology.h -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Biology.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Biology.m -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Info.plist -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Person.h -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/Person.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/Person.m -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/ViewController.h -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/ViewController.m -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollection/main.m -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollectionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollectionTests/Info.plist -------------------------------------------------------------------------------- /WZLDemoCollection/WZLDemoCollectionTests/WZLDemoCollectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLDemoCollection/WZLDemoCollectionTests/WZLDemoCollectionTests.m -------------------------------------------------------------------------------- /WZLSerializeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLSerializeKit.podspec -------------------------------------------------------------------------------- /WZLSerializeKit/WZLSerializeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weng1250/WZLSerializeKit/HEAD/WZLSerializeKit/WZLSerializeKit.h --------------------------------------------------------------------------------