├── .gitignore ├── DCLog ├── DCLog.h ├── DCLog.m ├── DCLogView.h ├── DCLogView.m ├── UIWindow+DCLog.h └── UIWindow+DCLog.m ├── DCLogViewDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── DCLogViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE ├── README.md └── Source ├── WechatIMG1.jpeg └── WechatIMG2.jpeg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/.gitignore -------------------------------------------------------------------------------- /DCLog/DCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/DCLog.h -------------------------------------------------------------------------------- /DCLog/DCLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/DCLog.m -------------------------------------------------------------------------------- /DCLog/DCLogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/DCLogView.h -------------------------------------------------------------------------------- /DCLog/DCLogView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/DCLogView.m -------------------------------------------------------------------------------- /DCLog/UIWindow+DCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/UIWindow+DCLog.h -------------------------------------------------------------------------------- /DCLog/UIWindow+DCLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLog/UIWindow+DCLog.m -------------------------------------------------------------------------------- /DCLogViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DCLogViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DCLogViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /DCLogViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /DCLogViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DCLogViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DCLogViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DCLogViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/Info.plist -------------------------------------------------------------------------------- /DCLogViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/ViewController.h -------------------------------------------------------------------------------- /DCLogViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/ViewController.m -------------------------------------------------------------------------------- /DCLogViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/DCLogViewDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/README.md -------------------------------------------------------------------------------- /Source/WechatIMG1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/Source/WechatIMG1.jpeg -------------------------------------------------------------------------------- /Source/WechatIMG2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarielChen/DCLog/HEAD/Source/WechatIMG2.jpeg --------------------------------------------------------------------------------