├── Example ├── .gitkeep ├── ANPAppDelegate.h ├── ANPAppDelegate.m ├── ANPCornerView.h ├── ANPCornerView.m ├── ANPViewController.h ├── ANPViewController.m └── Supporting Files │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Info.plist │ ├── Prefix.pch │ └── main.m ├── LICENSE.md ├── README.md ├── Sources ├── UIView+AnimatedProperty.h └── UIView+AnimatedProperty.m └── UIView+AnimatedProperty.xcodeproj ├── project.pbxproj └── project.xcworkspace └── contents.xcworkspacedata /Example/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/ANPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPAppDelegate.h -------------------------------------------------------------------------------- /Example/ANPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPAppDelegate.m -------------------------------------------------------------------------------- /Example/ANPCornerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPCornerView.h -------------------------------------------------------------------------------- /Example/ANPCornerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPCornerView.m -------------------------------------------------------------------------------- /Example/ANPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPViewController.h -------------------------------------------------------------------------------- /Example/ANPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/ANPViewController.m -------------------------------------------------------------------------------- /Example/Supporting Files/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/Supporting Files/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/Default.png -------------------------------------------------------------------------------- /Example/Supporting Files/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/Default@2x.png -------------------------------------------------------------------------------- /Example/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Example/Supporting Files/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/Prefix.pch -------------------------------------------------------------------------------- /Example/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Example/Supporting Files/main.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/README.md -------------------------------------------------------------------------------- /Sources/UIView+AnimatedProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Sources/UIView+AnimatedProperty.h -------------------------------------------------------------------------------- /Sources/UIView+AnimatedProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/Sources/UIView+AnimatedProperty.m -------------------------------------------------------------------------------- /UIView+AnimatedProperty.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/UIView+AnimatedProperty.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIView+AnimatedProperty.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/UIView-AnimatedProperty/HEAD/UIView+AnimatedProperty.xcodeproj/project.xcworkspace/contents.xcworkspacedata --------------------------------------------------------------------------------