├── .gitignore ├── Effect.gif ├── LICENSE ├── README.md ├── Thumbs.db ├── WbqDanMuDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── WbqDanMuDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── timg.imageset │ │ ├── Contents.json │ │ └── timg.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LivingViewController.h ├── LivingViewController.m ├── MP4ViewController.h ├── MP4ViewController.m ├── TableViewController.h ├── TableViewController.m ├── TestLabel.h ├── TestLabel.m ├── TestModel.h ├── TestModel.m ├── WbqDanMuKit │ ├── Category │ │ ├── CALayer+Aimate.h │ │ ├── CALayer+Aimate.m │ │ ├── NSTimer+WbqBlockSupport.h │ │ └── NSTimer+WbqBlockSupport.m │ ├── WbqDanmuConfiguration.h │ ├── WbqDanmuConfiguration.m │ ├── WbqDanmuModelProtoco.h │ ├── WbqDanmuView.h │ └── WbqDanmuView.m ├── XMLDictionary.h ├── XMLDictionary.m ├── YYFPSLabel.h ├── YYFPSLabel.m ├── ZFNavigationController │ ├── ZFNavigationController.h │ ├── ZFNavigationController.m │ ├── ZFScreenShotView.h │ └── ZFScreenShotView.m ├── danmu.xml └── main.m ├── WbqDanMuDemoTests ├── Info.plist └── WbqDanMuDemoTests.m └── WbqDanMuDemoUITests ├── Info.plist └── WbqDanMuDemoUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Effect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/Effect.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/README.md -------------------------------------------------------------------------------- /Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/Thumbs.db -------------------------------------------------------------------------------- /WbqDanMuDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WbqDanMuDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WbqDanMuDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/AppDelegate.h -------------------------------------------------------------------------------- /WbqDanMuDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/AppDelegate.m -------------------------------------------------------------------------------- /WbqDanMuDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WbqDanMuDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WbqDanMuDemo/Assets.xcassets/timg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Assets.xcassets/timg.imageset/Contents.json -------------------------------------------------------------------------------- /WbqDanMuDemo/Assets.xcassets/timg.imageset/timg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Assets.xcassets/timg.imageset/timg.png -------------------------------------------------------------------------------- /WbqDanMuDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WbqDanMuDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WbqDanMuDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/Info.plist -------------------------------------------------------------------------------- /WbqDanMuDemo/LivingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/LivingViewController.h -------------------------------------------------------------------------------- /WbqDanMuDemo/LivingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/LivingViewController.m -------------------------------------------------------------------------------- /WbqDanMuDemo/MP4ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/MP4ViewController.h -------------------------------------------------------------------------------- /WbqDanMuDemo/MP4ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/MP4ViewController.m -------------------------------------------------------------------------------- /WbqDanMuDemo/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TableViewController.h -------------------------------------------------------------------------------- /WbqDanMuDemo/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TableViewController.m -------------------------------------------------------------------------------- /WbqDanMuDemo/TestLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TestLabel.h -------------------------------------------------------------------------------- /WbqDanMuDemo/TestLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TestLabel.m -------------------------------------------------------------------------------- /WbqDanMuDemo/TestModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TestModel.h -------------------------------------------------------------------------------- /WbqDanMuDemo/TestModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/TestModel.m -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/Category/CALayer+Aimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/Category/CALayer+Aimate.h -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/Category/CALayer+Aimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/Category/CALayer+Aimate.m -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/Category/NSTimer+WbqBlockSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/Category/NSTimer+WbqBlockSupport.h -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/Category/NSTimer+WbqBlockSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/Category/NSTimer+WbqBlockSupport.m -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/WbqDanmuConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/WbqDanmuConfiguration.h -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/WbqDanmuConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/WbqDanmuConfiguration.m -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/WbqDanmuModelProtoco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/WbqDanmuModelProtoco.h -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/WbqDanmuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/WbqDanmuView.h -------------------------------------------------------------------------------- /WbqDanMuDemo/WbqDanMuKit/WbqDanmuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/WbqDanMuKit/WbqDanmuView.m -------------------------------------------------------------------------------- /WbqDanMuDemo/XMLDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/XMLDictionary.h -------------------------------------------------------------------------------- /WbqDanMuDemo/XMLDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/XMLDictionary.m -------------------------------------------------------------------------------- /WbqDanMuDemo/YYFPSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/YYFPSLabel.h -------------------------------------------------------------------------------- /WbqDanMuDemo/YYFPSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/YYFPSLabel.m -------------------------------------------------------------------------------- /WbqDanMuDemo/ZFNavigationController/ZFNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/ZFNavigationController/ZFNavigationController.h -------------------------------------------------------------------------------- /WbqDanMuDemo/ZFNavigationController/ZFNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/ZFNavigationController/ZFNavigationController.m -------------------------------------------------------------------------------- /WbqDanMuDemo/ZFNavigationController/ZFScreenShotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/ZFNavigationController/ZFScreenShotView.h -------------------------------------------------------------------------------- /WbqDanMuDemo/ZFNavigationController/ZFScreenShotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/ZFNavigationController/ZFScreenShotView.m -------------------------------------------------------------------------------- /WbqDanMuDemo/danmu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/danmu.xml -------------------------------------------------------------------------------- /WbqDanMuDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemo/main.m -------------------------------------------------------------------------------- /WbqDanMuDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemoTests/Info.plist -------------------------------------------------------------------------------- /WbqDanMuDemoTests/WbqDanMuDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemoTests/WbqDanMuDemoTests.m -------------------------------------------------------------------------------- /WbqDanMuDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemoUITests/Info.plist -------------------------------------------------------------------------------- /WbqDanMuDemoUITests/WbqDanMuDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Demonsword27/XLDanmakuKit/HEAD/WbqDanMuDemoUITests/WbqDanMuDemoUITests.m --------------------------------------------------------------------------------