├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── FMDB │ ├── FMDB-dummy.m │ ├── FMDB-prefix.pch │ ├── FMDB-umbrella.h │ ├── FMDB.modulemap │ ├── FMDB.xcconfig │ └── Info.plist │ └── Pods-YIIFMDB │ ├── Info.plist │ ├── Pods-YIIFMDB-acknowledgements.markdown │ ├── Pods-YIIFMDB-acknowledgements.plist │ ├── Pods-YIIFMDB-dummy.m │ ├── Pods-YIIFMDB-frameworks.sh │ ├── Pods-YIIFMDB-resources.sh │ ├── Pods-YIIFMDB-umbrella.h │ ├── Pods-YIIFMDB.debug.xcconfig │ ├── Pods-YIIFMDB.modulemap │ └── Pods-YIIFMDB.release.xcconfig ├── README.md ├── YIIFMDB.podspec ├── YIIFMDB.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── YIIFMDB.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── YIIFMDB ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LCVideoModel.h ├── LCVideoModel.m ├── ViewController.h ├── ViewController.m ├── YIIFMDB │ ├── YIIFMDB.h │ ├── YIIFMDB.m │ ├── YIIParameters.h │ └── YIIParameters.m └── main.m └── YIIFMDBUITests ├── Info.plist └── YIIFMDBUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/FMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/FMDB-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/FMDB-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/FMDB.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/FMDB.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/FMDB/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/Pods/Target Support Files/Pods-YIIFMDB/Pods-YIIFMDB.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/README.md -------------------------------------------------------------------------------- /YIIFMDB.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.podspec -------------------------------------------------------------------------------- /YIIFMDB.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YIIFMDB.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YIIFMDB.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YIIFMDB.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YIIFMDB.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YIIFMDB/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/AppDelegate.h -------------------------------------------------------------------------------- /YIIFMDB/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/AppDelegate.m -------------------------------------------------------------------------------- /YIIFMDB/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YIIFMDB/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YIIFMDB/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YIIFMDB/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YIIFMDB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/Info.plist -------------------------------------------------------------------------------- /YIIFMDB/LCVideoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/LCVideoModel.h -------------------------------------------------------------------------------- /YIIFMDB/LCVideoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/LCVideoModel.m -------------------------------------------------------------------------------- /YIIFMDB/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/ViewController.h -------------------------------------------------------------------------------- /YIIFMDB/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/ViewController.m -------------------------------------------------------------------------------- /YIIFMDB/YIIFMDB/YIIFMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/YIIFMDB/YIIFMDB.h -------------------------------------------------------------------------------- /YIIFMDB/YIIFMDB/YIIFMDB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/YIIFMDB/YIIFMDB.m -------------------------------------------------------------------------------- /YIIFMDB/YIIFMDB/YIIParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/YIIFMDB/YIIParameters.h -------------------------------------------------------------------------------- /YIIFMDB/YIIFMDB/YIIParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/YIIFMDB/YIIParameters.m -------------------------------------------------------------------------------- /YIIFMDB/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDB/main.m -------------------------------------------------------------------------------- /YIIFMDBUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDBUITests/Info.plist -------------------------------------------------------------------------------- /YIIFMDBUITests/YIIFMDBUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchongfaye/YIIFMDB/HEAD/YIIFMDBUITests/YIIFMDBUITests.m --------------------------------------------------------------------------------