├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Build │ │ │ └── UIImageViewSoftFrameAnimations │ │ │ │ └── UIImageView+SoftFrameAnimations.h │ │ └── Public │ │ │ └── UIImageViewSoftFrameAnimations │ │ │ └── UIImageView+SoftFrameAnimations.h │ ├── Local Podspecs │ │ └── UIImageViewSoftFrameAnimations.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── iboomobile.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Pods-Tests-UIImageViewSoftFrameAnimations.xcscheme │ │ │ ├── Pods-Tests.xcscheme │ │ │ ├── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcscheme │ │ │ ├── Pods-UIImageViewSoftFrameAnimations.xcscheme │ │ │ ├── UIImageViewSoftFrameAnimations.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Pods-Tests-UIImageViewSoftFrameAnimations │ │ ├── Pods-Tests-UIImageViewSoftFrameAnimations-Private.xcconfig │ │ ├── Pods-Tests-UIImageViewSoftFrameAnimations-dummy.m │ │ ├── Pods-Tests-UIImageViewSoftFrameAnimations-prefix.pch │ │ └── Pods-Tests-UIImageViewSoftFrameAnimations.xcconfig │ │ ├── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig │ │ ├── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations │ │ ├── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-Private.xcconfig │ │ ├── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-dummy.m │ │ ├── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-prefix.pch │ │ └── Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcconfig │ │ └── Pods-UIImageViewSoftFrameAnimations │ │ ├── Pods-UIImageViewSoftFrameAnimations-acknowledgements.markdown │ │ ├── Pods-UIImageViewSoftFrameAnimations-acknowledgements.plist │ │ ├── Pods-UIImageViewSoftFrameAnimations-dummy.m │ │ ├── Pods-UIImageViewSoftFrameAnimations-environment.h │ │ ├── Pods-UIImageViewSoftFrameAnimations-resources.sh │ │ ├── Pods-UIImageViewSoftFrameAnimations.debug.xcconfig │ │ └── Pods-UIImageViewSoftFrameAnimations.release.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── UIImageViewSoftFrameAnimations.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── UIImageViewSoftFrameAnimations-Example.xcscheme │ └── xcuserdata │ │ └── iboomobile.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── UIImageViewSoftFrameAnimations.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── iboomobile.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── UIImageViewSoftFrameAnimations │ ├── Base.lproj │ └── Main.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── SampleViewController.h │ ├── SampleViewController.m │ ├── UIAppDelegate.h │ ├── UIAppDelegate.m │ ├── UIImageViewSoftFrameAnimations-Info.plist │ ├── UIImageViewSoftFrameAnimations-Prefix.pch │ ├── bird_01.jpg │ ├── bird_02.jpg │ ├── bird_03.jpg │ ├── bird_04.jpg │ ├── bird_05.jpg │ ├── bird_06.jpg │ ├── bird_07.jpg │ ├── bird_08.jpg │ ├── bird_09.jpg │ ├── bird_10.jpg │ ├── bird_11.jpg │ ├── bird_12.jpg │ ├── bird_13.jpg │ ├── bird_14.jpg │ ├── bouche_01.jpg │ ├── bouche_02.jpg │ ├── bouche_03.jpg │ ├── bouche_04.jpg │ ├── bouche_05.jpg │ ├── bouche_06.jpg │ ├── bouche_07.jpg │ ├── bouche_08.jpg │ ├── bouche_09.jpg │ ├── bouche_10.jpg │ ├── bouche_11.jpg │ ├── bouche_12.jpg │ ├── bouche_13.jpg │ ├── bouche_14.jpg │ ├── bouche_15.jpg │ ├── bouche_16.jpg │ ├── bouche_17.jpg │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIImageView+SoftFrameAnimations.h │ └── UIImageView+SoftFrameAnimations.m ├── README.md └── UIImageViewSoftFrameAnimations.podspec /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Build/UIImageViewSoftFrameAnimations/UIImageView+SoftFrameAnimations.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageView+SoftFrameAnimations.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/UIImageViewSoftFrameAnimations/UIImageView+SoftFrameAnimations.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageView+SoftFrameAnimations.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/UIImageViewSoftFrameAnimations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Local Podspecs/UIImageViewSoftFrameAnimations.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-Tests-UIImageViewSoftFrameAnimations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-Tests-UIImageViewSoftFrameAnimations.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-UIImageViewSoftFrameAnimations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/Pods-UIImageViewSoftFrameAnimations.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/UIImageViewSoftFrameAnimations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/UIImageViewSoftFrameAnimations.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-UIImageViewSoftFrameAnimations/Pods-Tests-UIImageViewSoftFrameAnimations.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_UIIMAGEVIEWSOFTFRAMEANIMATIONS_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-UIImageViewSoftFrameAnimations.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Pods/Target Support Files/Pods-UIImageViewSoftFrameAnimations/Pods-UIImageViewSoftFrameAnimations.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcodeproj/xcshareddata/xcschemes/UIImageViewSoftFrameAnimations-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcodeproj/xcshareddata/xcschemes/UIImageViewSoftFrameAnimations-Example.xcscheme -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcodeproj/xcuserdata/iboomobile.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcworkspace/xcuserdata/iboomobile.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcworkspace/xcuserdata/iboomobile.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations.xcworkspace/xcuserdata/iboomobile.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations.xcworkspace/xcuserdata/iboomobile.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/SampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/SampleViewController.h -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/SampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/SampleViewController.m -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/UIAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/UIAppDelegate.h -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/UIAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/UIAppDelegate.m -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/UIImageViewSoftFrameAnimations-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/UIImageViewSoftFrameAnimations-Info.plist -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/UIImageViewSoftFrameAnimations-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/UIImageViewSoftFrameAnimations-Prefix.pch -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_01.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_02.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_03.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_04.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_05.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_06.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_07.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_08.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_09.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_10.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_11.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_12.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_13.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bird_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bird_14.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_01.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_02.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_03.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_04.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_05.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_06.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_07.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_08.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_09.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_10.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_11.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_12.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_13.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_14.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_15.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_16.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/bouche_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/bouche_17.jpg -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/UIImageViewSoftFrameAnimations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Example/UIImageViewSoftFrameAnimations/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+SoftFrameAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Pod/Classes/UIImageView+SoftFrameAnimations.h -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+SoftFrameAnimations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/Pod/Classes/UIImageView+SoftFrameAnimations.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/README.md -------------------------------------------------------------------------------- /UIImageViewSoftFrameAnimations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertMontserrat/UIImageViewSoftFrameAnimations/HEAD/UIImageViewSoftFrameAnimations.podspec --------------------------------------------------------------------------------