├── .gitignore ├── LICENSE ├── MGFinderView.podspec ├── MGFinderView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── matteogobbi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── matteogobbi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── MGFinderView.xcscheme │ └── xcschememanagement.plist ├── MGFinderView ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MGFinderView │ ├── MGFinderView.h │ └── MGFinderView.m ├── ViewController.h ├── ViewController.m └── main.m ├── MGFinderViewTests ├── Info.plist └── MGFinderViewTests.m ├── Multimedia ├── MGFinderViewImage.png ├── MGFinderViewVideo.gif └── MGFinderViewVideo.mov └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/LICENSE -------------------------------------------------------------------------------- /MGFinderView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.podspec -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/project.xcworkspace/xcuserdata/matteogobbi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/project.xcworkspace/xcuserdata/matteogobbi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcschemes/MGFinderView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcschemes/MGFinderView.xcscheme -------------------------------------------------------------------------------- /MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView.xcodeproj/xcuserdata/matteogobbi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MGFinderView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/AppDelegate.h -------------------------------------------------------------------------------- /MGFinderView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/AppDelegate.m -------------------------------------------------------------------------------- /MGFinderView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MGFinderView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MGFinderView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MGFinderView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/Info.plist -------------------------------------------------------------------------------- /MGFinderView/MGFinderView/MGFinderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/MGFinderView/MGFinderView.h -------------------------------------------------------------------------------- /MGFinderView/MGFinderView/MGFinderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/MGFinderView/MGFinderView.m -------------------------------------------------------------------------------- /MGFinderView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/ViewController.h -------------------------------------------------------------------------------- /MGFinderView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/ViewController.m -------------------------------------------------------------------------------- /MGFinderView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderView/main.m -------------------------------------------------------------------------------- /MGFinderViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderViewTests/Info.plist -------------------------------------------------------------------------------- /MGFinderViewTests/MGFinderViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/MGFinderViewTests/MGFinderViewTests.m -------------------------------------------------------------------------------- /Multimedia/MGFinderViewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/Multimedia/MGFinderViewImage.png -------------------------------------------------------------------------------- /Multimedia/MGFinderViewVideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/Multimedia/MGFinderViewVideo.gif -------------------------------------------------------------------------------- /Multimedia/MGFinderViewVideo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/Multimedia/MGFinderViewVideo.mov -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteogobbi/MGFinderView/HEAD/README.md --------------------------------------------------------------------------------