├── .gitignore ├── .travis.yml ├── Common.swift ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SRSwiftyPopView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SRSwiftyPopView_Example │ │ ├── Info.plist │ │ ├── Pods-SRSwiftyPopView_Example-acknowledgements.markdown │ │ ├── Pods-SRSwiftyPopView_Example-acknowledgements.plist │ │ ├── Pods-SRSwiftyPopView_Example-dummy.m │ │ ├── Pods-SRSwiftyPopView_Example-frameworks.sh │ │ ├── Pods-SRSwiftyPopView_Example-resources.sh │ │ ├── Pods-SRSwiftyPopView_Example-umbrella.h │ │ ├── Pods-SRSwiftyPopView_Example.debug.xcconfig │ │ ├── Pods-SRSwiftyPopView_Example.modulemap │ │ └── Pods-SRSwiftyPopView_Example.release.xcconfig │ │ ├── Pods-SRSwiftyPopView_Tests │ │ ├── Info.plist │ │ ├── Pods-SRSwiftyPopView_Tests-acknowledgements.markdown │ │ ├── Pods-SRSwiftyPopView_Tests-acknowledgements.plist │ │ ├── Pods-SRSwiftyPopView_Tests-dummy.m │ │ ├── Pods-SRSwiftyPopView_Tests-frameworks.sh │ │ ├── Pods-SRSwiftyPopView_Tests-resources.sh │ │ ├── Pods-SRSwiftyPopView_Tests-umbrella.h │ │ ├── Pods-SRSwiftyPopView_Tests.debug.xcconfig │ │ ├── Pods-SRSwiftyPopView_Tests.modulemap │ │ └── Pods-SRSwiftyPopView_Tests.release.xcconfig │ │ └── SRSwiftyPopView │ │ ├── Info.plist │ │ ├── SRSwiftyPopView-dummy.m │ │ ├── SRSwiftyPopView-prefix.pch │ │ ├── SRSwiftyPopView-umbrella.h │ │ ├── SRSwiftyPopView.modulemap │ │ └── SRSwiftyPopView.xcconfig ├── SRSwiftyPopView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SRSwiftyPopView-Example.xcscheme ├── SRSwiftyPopView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SRSwiftyPopView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── background │ │ │ ├── 1.imageset │ │ │ ├── 650257.png │ │ │ └── Contents.json │ │ │ ├── 2.imageset │ │ │ ├── Anime Sunset Scenery iPhone 6 6 Plus and iPhone 54 Wallpapers.jpg │ │ │ └── Contents.json │ │ │ ├── 3.imageset │ │ │ ├── Contents.json │ │ │ └── bi8jswmy3ug01.jpg │ │ │ ├── 4.imageset │ │ │ ├── Contents.json │ │ │ └── minimalist-anime-iphone-wallpaper-9-g-0-482-minimalist-anime-hd-wallpapers-backgrounds.jpg │ │ │ ├── 5.imageset │ │ │ ├── Contents.json │ │ │ └── photo-1521592128914-fb5353454928.jpeg │ │ │ ├── 6.imageset │ │ │ ├── Contents.json │ │ │ └── ruR9DzN.jpg │ │ │ └── Contents.json │ ├── Info.plist │ ├── SettingsViewController.swift │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── License ├── README.md ├── SRSwiftyPopView.podspec ├── SRSwiftyPopView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── SRExtensions.swift │ ├── SRPopView.swift │ └── SRSwiftyPopoverView.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Common.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SRSwiftyPopView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Local Podspecs/SRSwiftyPopView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Example/Pods-SRSwiftyPopView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/Pods-SRSwiftyPopView_Tests/Pods-SRSwiftyPopView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Pods/Target Support Files/SRSwiftyPopView/SRSwiftyPopView.xcconfig -------------------------------------------------------------------------------- /Example/SRSwiftyPopView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SRSwiftyPopView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SRSwiftyPopView.xcodeproj/xcshareddata/xcschemes/SRSwiftyPopView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView.xcodeproj/xcshareddata/xcschemes/SRSwiftyPopView-Example.xcscheme -------------------------------------------------------------------------------- /Example/SRSwiftyPopView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SRSwiftyPopView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/1.imageset/650257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/1.imageset/650257.png -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/2.imageset/Anime Sunset Scenery iPhone 6 6 Plus and iPhone 54 Wallpapers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/2.imageset/Anime Sunset Scenery iPhone 6 6 Plus and iPhone 54 Wallpapers.jpg -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/3.imageset/bi8jswmy3ug01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/3.imageset/bi8jswmy3ug01.jpg -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/4.imageset/minimalist-anime-iphone-wallpaper-9-g-0-482-minimalist-anime-hd-wallpapers-backgrounds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/4.imageset/minimalist-anime-iphone-wallpaper-9-g-0-482-minimalist-anime-hd-wallpapers-backgrounds.jpg -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/5.imageset/photo-1521592128914-fb5353454928.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/5.imageset/photo-1521592128914-fb5353454928.jpeg -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/6.imageset/ruR9DzN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/6.imageset/ruR9DzN.jpg -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Images.xcassets/background/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Images.xcassets/background/Contents.json -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/Info.plist -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/SettingsViewController.swift -------------------------------------------------------------------------------- /Example/SRSwiftyPopView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/SRSwiftyPopView/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/README.md -------------------------------------------------------------------------------- /SRSwiftyPopView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/SRSwiftyPopView.podspec -------------------------------------------------------------------------------- /SRSwiftyPopView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRSwiftyPopView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRSwiftyPopView/Classes/SRExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/SRSwiftyPopView/Classes/SRExtensions.swift -------------------------------------------------------------------------------- /SRSwiftyPopView/Classes/SRPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/SRSwiftyPopView/Classes/SRPopView.swift -------------------------------------------------------------------------------- /SRSwiftyPopView/Classes/SRSwiftyPopoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SahebRoy92/SRPopView/HEAD/SRSwiftyPopView/Classes/SRSwiftyPopoverView.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------