├── .gitignore ├── .travis.yml ├── Example ├── LeoDanmakuKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LeoDanmakuKit-Example.xcscheme ├── LeoDanmakuKit.xcworkspace │ └── contents.xcworkspacedata ├── LeoDanmakuKit │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── launchScreen.png │ ├── LEOAppDelegate.h │ ├── LEOAppDelegate.m │ ├── LeoDanmakuKit-Info.plist │ ├── LeoDanmakuKit-Prefix.pch │ ├── Main.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── LeoDanmakuKit │ │ │ ├── LeoDanmaku.h │ │ │ ├── LeoDanmakuChannel.h │ │ │ ├── LeoDanmakuChannelManager.h │ │ │ ├── LeoDanmakuLayer.h │ │ │ ├── LeoDanmakuModel.h │ │ │ ├── LeoDanmakuRandom.h │ │ │ └── LeoDanmakuView.h │ ├── Local Podspecs │ │ └── LeoDanmakuKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LeoDanmakuKit.xcscheme │ └── Target Support Files │ │ ├── LeoDanmakuKit │ │ ├── Info.plist │ │ ├── LeoDanmakuKit-dummy.m │ │ ├── LeoDanmakuKit-prefix.pch │ │ ├── LeoDanmakuKit-umbrella.h │ │ ├── LeoDanmakuKit.modulemap │ │ └── LeoDanmakuKit.xcconfig │ │ ├── Pods-LeoDanmakuKit_Example │ │ ├── Info.plist │ │ ├── Pods-LeoDanmakuKit_Example-acknowledgements.markdown │ │ ├── Pods-LeoDanmakuKit_Example-acknowledgements.plist │ │ ├── Pods-LeoDanmakuKit_Example-dummy.m │ │ ├── Pods-LeoDanmakuKit_Example-frameworks.sh │ │ ├── Pods-LeoDanmakuKit_Example-resources.sh │ │ ├── Pods-LeoDanmakuKit_Example-umbrella.h │ │ ├── Pods-LeoDanmakuKit_Example.debug.xcconfig │ │ ├── Pods-LeoDanmakuKit_Example.modulemap │ │ └── Pods-LeoDanmakuKit_Example.release.xcconfig │ │ └── Pods-LeoDanmakuKit_Tests │ │ ├── Info.plist │ │ ├── Pods-LeoDanmakuKit_Tests-acknowledgements.markdown │ │ ├── Pods-LeoDanmakuKit_Tests-acknowledgements.plist │ │ ├── Pods-LeoDanmakuKit_Tests-dummy.m │ │ ├── Pods-LeoDanmakuKit_Tests-frameworks.sh │ │ ├── Pods-LeoDanmakuKit_Tests-resources.sh │ │ ├── Pods-LeoDanmakuKit_Tests-umbrella.h │ │ ├── Pods-LeoDanmakuKit_Tests.debug.xcconfig │ │ ├── Pods-LeoDanmakuKit_Tests.modulemap │ │ └── Pods-LeoDanmakuKit_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── LeoDanmakuKit.podspec ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── LeoDanmaku.h │ ├── LeoDanmakuChannel.h │ ├── LeoDanmakuChannel.m │ ├── LeoDanmakuChannelManager.h │ ├── LeoDanmakuChannelManager.m │ ├── LeoDanmakuLayer.h │ ├── LeoDanmakuLayer.m │ ├── LeoDanmakuModel.h │ ├── LeoDanmakuModel.m │ ├── LeoDanmakuRandom.h │ ├── LeoDanmakuRandom.m │ ├── LeoDanmakuView.h │ └── LeoDanmakuView.m ├── README.md ├── Screenshots └── s.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LeoDanmakuKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LeoDanmakuKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LeoDanmakuKit.xcodeproj/xcshareddata/xcschemes/LeoDanmakuKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit.xcodeproj/xcshareddata/xcschemes/LeoDanmakuKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/LeoDanmakuKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/Images.xcassets/LaunchImage.launchimage/launchScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/Images.xcassets/LaunchImage.launchimage/launchScreen.png -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/LEOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/LEOAppDelegate.h -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/LEOAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/LEOAppDelegate.m -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/LeoDanmakuKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/LeoDanmakuKit-Info.plist -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/LeoDanmakuKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/LeoDanmakuKit-Prefix.pch -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/Main.storyboard -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/ViewController.h -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/ViewController.m -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LeoDanmakuKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/LeoDanmakuKit/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmaku.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmaku.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuChannel.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuChannel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuChannelManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuChannelManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuLayer.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuLayer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuModel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuRandom.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuRandom.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LeoDanmakuKit/LeoDanmakuView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LeoDanmakuView.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LeoDanmakuKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Local Podspecs/LeoDanmakuKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LeoDanmakuKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LeoDanmakuKit.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/LeoDanmakuKit/LeoDanmakuKit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Example/Pods-LeoDanmakuKit_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Pods/Target Support Files/Pods-LeoDanmakuKit_Tests/Pods-LeoDanmakuKit_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/LICENSE -------------------------------------------------------------------------------- /LeoDanmakuKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/LeoDanmakuKit.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmaku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmaku.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuChannel.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuChannel.m -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuChannelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuChannelManager.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuChannelManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuChannelManager.m -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuLayer.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuLayer.m -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuModel.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuModel.m -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuRandom.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuRandom.m -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuView.h -------------------------------------------------------------------------------- /Pod/Classes/LeoDanmakuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Pod/Classes/LeoDanmakuView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoMobileDeveloper/LeoDanmakuKit/HEAD/Screenshots/s.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------