├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── XTSafeCollection.podspec ├── XTSafeCollection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── XTSafeCollection.xcscheme ├── XTSafeCollection ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m ├── XTSafeCollection │ ├── XTSafeCollection.h │ └── XTSafeCollection.m └── main.m └── XTSafeCollectionTests ├── Info.plist └── XTSafeCollectionTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/README.md -------------------------------------------------------------------------------- /XTSafeCollection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection.podspec -------------------------------------------------------------------------------- /XTSafeCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XTSafeCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XTSafeCollection.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XTSafeCollection.xcodeproj/xcshareddata/xcschemes/XTSafeCollection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection.xcodeproj/xcshareddata/xcschemes/XTSafeCollection.xcscheme -------------------------------------------------------------------------------- /XTSafeCollection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/AppDelegate.h -------------------------------------------------------------------------------- /XTSafeCollection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/AppDelegate.m -------------------------------------------------------------------------------- /XTSafeCollection/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /XTSafeCollection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XTSafeCollection/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XTSafeCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/Info.plist -------------------------------------------------------------------------------- /XTSafeCollection/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/ViewController.h -------------------------------------------------------------------------------- /XTSafeCollection/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/ViewController.m -------------------------------------------------------------------------------- /XTSafeCollection/XTSafeCollection/XTSafeCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/XTSafeCollection/XTSafeCollection.h -------------------------------------------------------------------------------- /XTSafeCollection/XTSafeCollection/XTSafeCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/XTSafeCollection/XTSafeCollection.m -------------------------------------------------------------------------------- /XTSafeCollection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollection/main.m -------------------------------------------------------------------------------- /XTSafeCollectionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollectionTests/Info.plist -------------------------------------------------------------------------------- /XTSafeCollectionTests/XTSafeCollectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuwen1030/XTSafeCollection/HEAD/XTSafeCollectionTests/XTSafeCollectionTests.m --------------------------------------------------------------------------------