├── .gitattributes ├── .gitignore ├── .swift-version ├── Example ├── PGViewAnimationable.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PGViewAnimationable-Example.xcscheme ├── PGViewAnimationable.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PGViewAnimationable │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── First.imageset │ │ │ ├── Contents.json │ │ │ └── First@2x.png │ │ ├── Second.imageset │ │ │ ├── Contents.json │ │ │ └── Second@2x.png │ │ └── Third.imageset │ │ │ ├── Contents.json │ │ │ └── Third@2x.png │ ├── Info.plist │ ├── SampleAnimationImageView.swift │ ├── SampleAnimationLabel.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── PGViewAnimationable.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Target Support Files │ │ ├── PGViewAnimationable │ │ ├── Info.plist │ │ ├── PGViewAnimationable-Info.plist │ │ ├── PGViewAnimationable-dummy.m │ │ ├── PGViewAnimationable-prefix.pch │ │ ├── PGViewAnimationable-umbrella.h │ │ ├── PGViewAnimationable.debug.xcconfig │ │ ├── PGViewAnimationable.modulemap │ │ ├── PGViewAnimationable.release.xcconfig │ │ └── PGViewAnimationable.xcconfig │ │ ├── Pods-PGViewAnimationable_Example │ │ ├── Info.plist │ │ ├── Pods-PGViewAnimationable_Example-Info.plist │ │ ├── Pods-PGViewAnimationable_Example-acknowledgements.markdown │ │ ├── Pods-PGViewAnimationable_Example-acknowledgements.plist │ │ ├── Pods-PGViewAnimationable_Example-dummy.m │ │ ├── Pods-PGViewAnimationable_Example-frameworks.sh │ │ ├── Pods-PGViewAnimationable_Example-resources.sh │ │ ├── Pods-PGViewAnimationable_Example-umbrella.h │ │ ├── Pods-PGViewAnimationable_Example.debug.xcconfig │ │ ├── Pods-PGViewAnimationable_Example.modulemap │ │ └── Pods-PGViewAnimationable_Example.release.xcconfig │ │ └── Pods-PGViewAnimationable_Tests │ │ ├── Info.plist │ │ ├── Pods-PGViewAnimationable_Tests-Info.plist │ │ ├── Pods-PGViewAnimationable_Tests-acknowledgements.markdown │ │ ├── Pods-PGViewAnimationable_Tests-acknowledgements.plist │ │ ├── Pods-PGViewAnimationable_Tests-dummy.m │ │ ├── Pods-PGViewAnimationable_Tests-frameworks.sh │ │ ├── Pods-PGViewAnimationable_Tests-resources.sh │ │ ├── Pods-PGViewAnimationable_Tests-umbrella.h │ │ ├── Pods-PGViewAnimationable_Tests.debug.xcconfig │ │ ├── Pods-PGViewAnimationable_Tests.modulemap │ │ └── Pods-PGViewAnimationable_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── PGViewAnimationable.podspec ├── PGViewAnimationable ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ViewAnimationable.swift ├── README.md └── _Pods.xcodeproj /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rb linguist-language=Swift -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /Example/PGViewAnimationable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PGViewAnimationable.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PGViewAnimationable.xcodeproj/xcshareddata/xcschemes/PGViewAnimationable-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable.xcodeproj/xcshareddata/xcschemes/PGViewAnimationable-Example.xcscheme -------------------------------------------------------------------------------- /Example/PGViewAnimationable.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PGViewAnimationable.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PGViewAnimationable/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/First.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/First.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/First.imageset/First@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/First.imageset/First@2x.png -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/Second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/Second.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/Second.imageset/Second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/Second.imageset/Second@2x.png -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/Third.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/Third.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Images.xcassets/Third.imageset/Third@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Images.xcassets/Third.imageset/Third@2x.png -------------------------------------------------------------------------------- /Example/PGViewAnimationable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/Info.plist -------------------------------------------------------------------------------- /Example/PGViewAnimationable/SampleAnimationImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/SampleAnimationImageView.swift -------------------------------------------------------------------------------- /Example/PGViewAnimationable/SampleAnimationLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/SampleAnimationLabel.swift -------------------------------------------------------------------------------- /Example/PGViewAnimationable/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/PGViewAnimationable/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PGViewAnimationable.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Local Podspecs/PGViewAnimationable.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/PGViewAnimationable/PGViewAnimationable.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Example/Pods-PGViewAnimationable_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Pods/Target Support Files/Pods-PGViewAnimationable_Tests/Pods-PGViewAnimationable_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/LICENSE -------------------------------------------------------------------------------- /PGViewAnimationable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/PGViewAnimationable.podspec -------------------------------------------------------------------------------- /PGViewAnimationable/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PGViewAnimationable/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PGViewAnimationable/Classes/ViewAnimationable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/PGViewAnimationable/Classes/ViewAnimationable.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipagong/PGViewAnimationable/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------