├── .DS_Store ├── .gitignore ├── README.md ├── ZLCheckFilePlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── ZLCheckFilePlugin.xccheckout │ └── xcuserdata │ │ └── zhanglei.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zhanglei.xcuserdatad │ └── xcschemes │ ├── ZLCheckFilePlugin.xcscheme │ └── xcschememanagement.plist ├── ZLCheckFilePlugin ├── .DS_Store ├── Info.plist ├── NSArray+Ext.h ├── NSArray+Ext.m ├── README.md ├── ZLCheckFile.h ├── ZLCheckFile.m ├── ZLCheckFileDataViewController.h ├── ZLCheckFileDataViewController.m ├── ZLCheckFileDataViewController.xib ├── ZLCheckInfo.h ├── ZLCheckInfo.m ├── ZLFile.h ├── ZLFile.m └── files.plist ├── screenhost1.png └── screenhost2.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.cuserstate 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/README.md -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/project.xcworkspace/xcshareddata/ZLCheckFilePlugin.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/project.xcworkspace/xcshareddata/ZLCheckFilePlugin.xccheckout -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/project.xcworkspace/xcuserdata/zhanglei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/project.xcworkspace/xcuserdata/zhanglei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/xcuserdata/zhanglei.xcuserdatad/xcschemes/ZLCheckFilePlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/xcuserdata/zhanglei.xcuserdatad/xcschemes/ZLCheckFilePlugin.xcscheme -------------------------------------------------------------------------------- /ZLCheckFilePlugin.xcodeproj/xcuserdata/zhanglei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin.xcodeproj/xcuserdata/zhanglei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZLCheckFilePlugin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/.DS_Store -------------------------------------------------------------------------------- /ZLCheckFilePlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/Info.plist -------------------------------------------------------------------------------- /ZLCheckFilePlugin/NSArray+Ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/NSArray+Ext.h -------------------------------------------------------------------------------- /ZLCheckFilePlugin/NSArray+Ext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/NSArray+Ext.m -------------------------------------------------------------------------------- /ZLCheckFilePlugin/README.md: -------------------------------------------------------------------------------- 1 | # ZLCheckFilePlugin-Xcode 2 | -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckFile.h -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckFile.m -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckFileDataViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckFileDataViewController.h -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckFileDataViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckFileDataViewController.m -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckFileDataViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckFileDataViewController.xib -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckInfo.h -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLCheckInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLCheckInfo.m -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLFile.h -------------------------------------------------------------------------------- /ZLCheckFilePlugin/ZLFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/ZLFile.m -------------------------------------------------------------------------------- /ZLCheckFilePlugin/files.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/ZLCheckFilePlugin/files.plist -------------------------------------------------------------------------------- /screenhost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/screenhost1.png -------------------------------------------------------------------------------- /screenhost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeZL/ZLCheckFilePlugin-Xcode/HEAD/screenhost2.png --------------------------------------------------------------------------------