├── README.md ├── SuperKVC ├── NSObject+SuperKVC.h ├── NSObject+SuperKVC.m ├── SKVAttribute.h ├── SKVAttribute.m ├── SKVBindAttribute.h ├── SKVBindAttribute.m ├── SKVFormatAttribute.h ├── SKVFormatAttribute.m ├── SKVIgnoreAttribute.h ├── SKVIgnoreAttribute.m ├── SKVManager.h ├── SKVManager.m ├── SKVManager_Private.h ├── SKVMappingAttribute.h ├── SKVMappingAttribute.m ├── SKVSynthesizeAttribute.h ├── SKVSynthesizeAttribute.m ├── SuperKVC.h ├── SuperKVCConst.h ├── SuperKVCInjector.h ├── SuperKVCInjector.m └── SuperKVCInjector_Private.h └── SuperKVCDemo ├── SuperKVCDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── soulghost.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── soulghost.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SuperKVCDemo.xcscheme │ └── xcschememanagement.plist └── SuperKVCDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Controllers ├── DeepArraySampleVc.h ├── DeepArraySampleVc.m ├── ShallowArraySimpleVc.h ├── ShallowArraySimpleVc.m ├── ShallowDictSampleVc.h └── ShallowDictSampleVc.m ├── Info.plist ├── Models ├── CardModel.h ├── CardModel.m ├── UserModel.h └── UserModel.m ├── Resources ├── deep_array.json ├── shallow_array.json └── shallow_dict.json ├── ViewController.h ├── ViewController.m ├── Views ├── UserCardCell.h ├── UserCardCell.m ├── UserCardCell.xib ├── UserPartnerCell.h ├── UserPartnerCell.m └── UserPartnerCell.xib └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/README.md -------------------------------------------------------------------------------- /SuperKVC/NSObject+SuperKVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/NSObject+SuperKVC.h -------------------------------------------------------------------------------- /SuperKVC/NSObject+SuperKVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/NSObject+SuperKVC.m -------------------------------------------------------------------------------- /SuperKVC/SKVAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SKVBindAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVBindAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVBindAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVBindAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SKVFormatAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVFormatAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVFormatAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVFormatAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SKVIgnoreAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVIgnoreAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVIgnoreAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVIgnoreAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SKVManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVManager.h -------------------------------------------------------------------------------- /SuperKVC/SKVManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVManager.m -------------------------------------------------------------------------------- /SuperKVC/SKVManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVManager_Private.h -------------------------------------------------------------------------------- /SuperKVC/SKVMappingAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVMappingAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVMappingAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVMappingAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SKVSynthesizeAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVSynthesizeAttribute.h -------------------------------------------------------------------------------- /SuperKVC/SKVSynthesizeAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SKVSynthesizeAttribute.m -------------------------------------------------------------------------------- /SuperKVC/SuperKVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SuperKVC.h -------------------------------------------------------------------------------- /SuperKVC/SuperKVCConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SuperKVCConst.h -------------------------------------------------------------------------------- /SuperKVC/SuperKVCInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SuperKVCInjector.h -------------------------------------------------------------------------------- /SuperKVC/SuperKVCInjector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SuperKVCInjector.m -------------------------------------------------------------------------------- /SuperKVC/SuperKVCInjector_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVC/SuperKVCInjector_Private.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/project.xcworkspace/xcuserdata/soulghost.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/project.xcworkspace/xcuserdata/soulghost.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcschemes/SuperKVCDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcschemes/SuperKVCDemo.xcscheme -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo.xcodeproj/xcuserdata/soulghost.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/AppDelegate.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/AppDelegate.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/DeepArraySampleVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/DeepArraySampleVc.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/DeepArraySampleVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/DeepArraySampleVc.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/ShallowArraySimpleVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/ShallowArraySimpleVc.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/ShallowArraySimpleVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/ShallowArraySimpleVc.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/ShallowDictSampleVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/ShallowDictSampleVc.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Controllers/ShallowDictSampleVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Controllers/ShallowDictSampleVc.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Info.plist -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Models/CardModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Models/CardModel.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Models/CardModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Models/CardModel.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Models/UserModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Models/UserModel.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Models/UserModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Models/UserModel.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Resources/deep_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Resources/deep_array.json -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Resources/shallow_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Resources/shallow_array.json -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Resources/shallow_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Resources/shallow_dict.json -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/ViewController.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/ViewController.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserCardCell.xib -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.h -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.m -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/Views/UserPartnerCell.xib -------------------------------------------------------------------------------- /SuperKVCDemo/SuperKVCDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulghost/SuperKVC/HEAD/SuperKVCDemo/SuperKVCDemo/main.m --------------------------------------------------------------------------------