├── .gitmodules ├── LICENSE ├── MYSCategoryProperties.podspec ├── MYSCategoryProperties.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── MYSCategoryProperties.xccheckout ├── MYSCategoryProperties.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── MYSCategoryProperties.xccheckout ├── MYSCategoryProperties ├── MYSCategoryProperties-Prefix.pch ├── MYSCategoryProperties.h └── MYSCategoryProperties.m ├── MYSCategoryPropertiesTests ├── MYSCategoryPropertiesTests-Info.plist ├── MYSCategoryPropertiesTests.m ├── NSString+Testing.h ├── NSString+Testing.m └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods ├── BuildHeaders │ └── MYSRuntime │ │ ├── CTBlockDescription.h │ │ ├── MYSClass.h │ │ ├── MYSIvar.h │ │ ├── MYSMethod.h │ │ ├── MYSProperty.h │ │ ├── MYSRuntime.h │ │ ├── MYSType.h │ │ └── MYSTypes.h ├── Headers │ └── MYSRuntime │ │ ├── CTBlockDescription.h │ │ ├── MYSClass.h │ │ ├── MYSIvar.h │ │ ├── MYSMethod.h │ │ ├── MYSProperty.h │ │ ├── MYSRuntime.h │ │ ├── MYSType.h │ │ └── MYSTypes.h ├── Local Podspecs │ └── MYSRuntime.podspec ├── Manifest.lock ├── Pods-MYSRuntime-Private.xcconfig ├── Pods-MYSRuntime-dummy.m ├── Pods-MYSRuntime-prefix.pch ├── Pods-MYSRuntime.xcconfig ├── Pods-acknowledgements.markdown ├── Pods-acknowledgements.plist ├── Pods-dummy.m ├── Pods-environment.h ├── Pods-resources.sh ├── Pods.xcconfig └── Pods.xcodeproj │ └── project.pbxproj └── README.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/LICENSE -------------------------------------------------------------------------------- /MYSCategoryProperties.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.podspec -------------------------------------------------------------------------------- /MYSCategoryProperties.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MYSCategoryProperties.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MYSCategoryProperties.xcodeproj/project.xcworkspace/xcshareddata/MYSCategoryProperties.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.xcodeproj/project.xcworkspace/xcshareddata/MYSCategoryProperties.xccheckout -------------------------------------------------------------------------------- /MYSCategoryProperties.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MYSCategoryProperties.xcworkspace/xcshareddata/MYSCategoryProperties.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties.xcworkspace/xcshareddata/MYSCategoryProperties.xccheckout -------------------------------------------------------------------------------- /MYSCategoryProperties/MYSCategoryProperties-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties/MYSCategoryProperties-Prefix.pch -------------------------------------------------------------------------------- /MYSCategoryProperties/MYSCategoryProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties/MYSCategoryProperties.h -------------------------------------------------------------------------------- /MYSCategoryProperties/MYSCategoryProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryProperties/MYSCategoryProperties.m -------------------------------------------------------------------------------- /MYSCategoryPropertiesTests/MYSCategoryPropertiesTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryPropertiesTests/MYSCategoryPropertiesTests-Info.plist -------------------------------------------------------------------------------- /MYSCategoryPropertiesTests/MYSCategoryPropertiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryPropertiesTests/MYSCategoryPropertiesTests.m -------------------------------------------------------------------------------- /MYSCategoryPropertiesTests/NSString+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryPropertiesTests/NSString+Testing.h -------------------------------------------------------------------------------- /MYSCategoryPropertiesTests/NSString+Testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/MYSCategoryPropertiesTests/NSString+Testing.m -------------------------------------------------------------------------------- /MYSCategoryPropertiesTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/CTBlockDescription.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/CTBlockDescription.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSClass.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSClass.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSIvar.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSIvar.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSMethod.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSMethod.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSProperty.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSProperty.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSRuntime.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSType.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSType.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MYSRuntime/MYSTypes.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSTypes.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/CTBlockDescription.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/CTBlockDescription.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSClass.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSClass.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSIvar.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSIvar.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSMethod.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSMethod.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSProperty.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSProperty.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSType.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSType.h -------------------------------------------------------------------------------- /Pods/Headers/MYSRuntime/MYSTypes.h: -------------------------------------------------------------------------------- 1 | ../../../libs/MYSRuntime/MYSRuntime/MYSTypes.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/MYSRuntime.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Local Podspecs/MYSRuntime.podspec -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods-MYSRuntime-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-MYSRuntime-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-MYSRuntime-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-MYSRuntime-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-MYSRuntime-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-MYSRuntime-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-MYSRuntime.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MYSRUNTIME_OTHER_LDFLAGS = -framework Foundation -------------------------------------------------------------------------------- /Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysterioustrousers/MYSCategoryProperties/HEAD/README.md --------------------------------------------------------------------------------