├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Example ├── MEVFloatingButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MEVFloatingButton-Example.xcscheme ├── MEVFloatingButton.xcworkspace │ └── contents.xcworkspacedata ├── MEVFloatingButton │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Icon0.imageset │ │ │ ├── Contents.json │ │ │ ├── up-sign (1).png │ │ │ ├── up-sign (2).png │ │ │ └── up-sign.png │ │ ├── Icon1.imageset │ │ │ ├── Contents.json │ │ │ ├── mathematical-addition-sign (1).png │ │ │ ├── mathematical-addition-sign (2).png │ │ │ └── mathematical-addition-sign.png │ │ ├── Icon2.imageset │ │ │ ├── Contents.json │ │ │ ├── small-ascending-thin-arrow (1).png │ │ │ ├── small-ascending-thin-arrow (2).png │ │ │ └── small-ascending-thin-arrow.png │ │ ├── Icon3.imageset │ │ │ ├── Contents.json │ │ │ ├── speech-bubble-outline (1).png │ │ │ ├── speech-bubble-outline (2).png │ │ │ └── speech-bubble-outline.png │ │ ├── Icon4.imageset │ │ │ ├── Contents.json │ │ │ ├── right-chevron--2.png │ │ │ ├── right-chevron--3.png │ │ │ └── right-chevron-0.png │ │ ├── Icon5.imageset │ │ │ ├── Contents.json │ │ │ ├── backward-arrow-2.png │ │ │ ├── backward-arrow-3.png │ │ │ └── backward-arrow.png │ │ ├── Icon6.imageset │ │ │ ├── Contents.json │ │ │ ├── double-arrow-left-2.png │ │ │ ├── double-arrow-left-3.png │ │ │ └── double-arrow-left.png │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── MEVAppDelegate.h │ ├── MEVAppDelegate.m │ ├── MEVExample1ViewController.h │ ├── MEVExample1ViewController.m │ ├── MEVExample2ViewController.h │ ├── MEVExample2ViewController.m │ ├── MEVExample3ViewController.h │ ├── MEVExample3ViewController.m │ ├── MEVExample4ViewController.h │ ├── MEVExample4ViewController.m │ ├── MEVExample5ViewController.h │ ├── MEVExample5ViewController.m │ ├── MEVFloatingButton-Info.plist │ ├── MEVFloatingButton-Prefix.pch │ ├── MEVViewController.h │ ├── MEVViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── MEVFloatingButton │ │ │ └── UIScrollView+FloatingButton.h │ ├── Local Podspecs │ │ └── MEVFloatingButton.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MEVFloatingButton.xcscheme │ └── Target Support Files │ │ ├── MEVFloatingButton │ │ ├── Info.plist │ │ ├── MEVFloatingButton-dummy.m │ │ ├── MEVFloatingButton-prefix.pch │ │ ├── MEVFloatingButton-umbrella.h │ │ ├── MEVFloatingButton.modulemap │ │ └── MEVFloatingButton.xcconfig │ │ ├── Pods-MEVFloatingButton_Example │ │ ├── Info.plist │ │ ├── Pods-MEVFloatingButton_Example-acknowledgements.markdown │ │ ├── Pods-MEVFloatingButton_Example-acknowledgements.plist │ │ ├── Pods-MEVFloatingButton_Example-dummy.m │ │ ├── Pods-MEVFloatingButton_Example-frameworks.sh │ │ ├── Pods-MEVFloatingButton_Example-resources.sh │ │ ├── Pods-MEVFloatingButton_Example-umbrella.h │ │ ├── Pods-MEVFloatingButton_Example.debug.xcconfig │ │ ├── Pods-MEVFloatingButton_Example.modulemap │ │ └── Pods-MEVFloatingButton_Example.release.xcconfig │ │ └── Pods-MEVFloatingButton_Tests │ │ ├── Info.plist │ │ ├── Pods-MEVFloatingButton_Tests-acknowledgements.markdown │ │ ├── Pods-MEVFloatingButton_Tests-acknowledgements.plist │ │ ├── Pods-MEVFloatingButton_Tests-dummy.m │ │ ├── Pods-MEVFloatingButton_Tests-frameworks.sh │ │ ├── Pods-MEVFloatingButton_Tests-resources.sh │ │ ├── Pods-MEVFloatingButton_Tests-umbrella.h │ │ ├── Pods-MEVFloatingButton_Tests.debug.xcconfig │ │ ├── Pods-MEVFloatingButton_Tests.modulemap │ │ └── Pods-MEVFloatingButton_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── MEVFloatingButton.podspec ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIScrollView+FloatingButton.h │ └── UIScrollView+FloatingButton.m ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/MEVFloatingButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MEVFloatingButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MEVFloatingButton.xcodeproj/xcshareddata/xcschemes/MEVFloatingButton-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton.xcodeproj/xcshareddata/xcschemes/MEVFloatingButton-Example.xcscheme -------------------------------------------------------------------------------- /Example/MEVFloatingButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign (1).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign (2).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon0.imageset/up-sign.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign (1).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign (2).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon1.imageset/mathematical-addition-sign.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow (1).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow (2).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon2.imageset/small-ascending-thin-arrow.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline (1).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline (2).png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon3.imageset/speech-bubble-outline.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron--2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron--2.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron--3.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon4.imageset/right-chevron-0.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow-2.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow-3.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon5.imageset/backward-arrow.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left-2.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left-3.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/Icon6.imageset/double-arrow-left.png -------------------------------------------------------------------------------- /Example/MEVFloatingButton/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVAppDelegate.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVAppDelegate.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample1ViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample1ViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample2ViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample2ViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample3ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample3ViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample3ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample3ViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample4ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample4ViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample4ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample4ViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample5ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample5ViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVExample5ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVExample5ViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVFloatingButton-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVFloatingButton-Info.plist -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVFloatingButton-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVFloatingButton-Prefix.pch -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVViewController.h -------------------------------------------------------------------------------- /Example/MEVFloatingButton/MEVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/MEVViewController.m -------------------------------------------------------------------------------- /Example/MEVFloatingButton/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/MEVFloatingButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/MEVFloatingButton/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MEVFloatingButton/UIScrollView+FloatingButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIScrollView+FloatingButton.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MEVFloatingButton.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Local Podspecs/MEVFloatingButton.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/MEVFloatingButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/MEVFloatingButton.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/MEVFloatingButton/MEVFloatingButton.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Example/Pods-MEVFloatingButton_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Pods/Target Support Files/Pods-MEVFloatingButton_Tests/Pods-MEVFloatingButton_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/LICENSE -------------------------------------------------------------------------------- /MEVFloatingButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/MEVFloatingButton.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/UIScrollView+FloatingButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Pod/Classes/UIScrollView+FloatingButton.h -------------------------------------------------------------------------------- /Pod/Classes/UIScrollView+FloatingButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/Pod/Classes/UIScrollView+FloatingButton.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelescrig/MEVFloatingButton/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------