├── .DS_Store ├── .gitignore ├── LICENSE ├── LPSemiModalView.podspec ├── LPSemiModalView ├── LPSemiModalView.h └── LPSemiModalView.m ├── LPSemiModalViewSample ├── .DS_Store ├── LPSemiModalViewSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── LPSemiModalViewSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── LPSemiModalView │ ├── LPSemiModalView.h │ └── LPSemiModalView.m │ ├── Supporting Files │ └── main.m │ ├── ViewController.h │ └── ViewController.m ├── README.md └── screenshot.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LICENSE -------------------------------------------------------------------------------- /LPSemiModalView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalView.podspec -------------------------------------------------------------------------------- /LPSemiModalView/LPSemiModalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalView/LPSemiModalView.h -------------------------------------------------------------------------------- /LPSemiModalView/LPSemiModalView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalView/LPSemiModalView.m -------------------------------------------------------------------------------- /LPSemiModalViewSample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/.DS_Store -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/AppDelegate.h -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/AppDelegate.m -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/Info.plist -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/LPSemiModalView/LPSemiModalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/LPSemiModalView/LPSemiModalView.h -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/LPSemiModalView/LPSemiModalView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/LPSemiModalView/LPSemiModalView.m -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/Supporting Files/main.m -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/ViewController.h -------------------------------------------------------------------------------- /LPSemiModalViewSample/LPSemiModalViewSample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/LPSemiModalViewSample/LPSemiModalViewSample/ViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litt1e-p/LPSemiModalView/HEAD/screenshot.gif --------------------------------------------------------------------------------