├── .travis.yml ├── KFFlyCommentViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── YGFlyCommentDemo.xcscmblueprint └── xcshareddata │ └── xcschemes │ └── YGFlyCommentDemo.xcscheme ├── KFFlyCommentViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── home_login_qq_color.imageset │ │ ├── Contents.json │ │ ├── home_login_qq_color.png │ │ ├── home_login_qq_color@2x.png │ │ └── home_login_qq_color@3x.png │ ├── home_login_wechat_color.imageset │ │ ├── Contents.json │ │ ├── home_login_wechat_color.png │ │ ├── home_login_wechat_color@2x.png │ │ └── home_login_wechat_color@3x.png │ ├── home_login_weibo_color.imageset │ │ ├── Contents.json │ │ ├── home_login_weibo_color.png │ │ ├── home_login_weibo_color@2x.png │ │ └── home_login_weibo_color@3x.png │ ├── icon_120-1.imageset │ │ ├── Contents.json │ │ └── icon_120-1.png │ └── rank_charm_heart.imageset │ │ ├── Contents.json │ │ ├── rank_charm_heart.png │ │ ├── rank_charm_heart@2x.png │ │ └── rank_charm_heart@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomView.h ├── CustomView.m ├── GoViewController.h ├── GoViewController.m ├── Info.plist ├── KFFlyCommentView │ ├── KFFlyCommentTrackView.h │ ├── KFFlyCommentTrackView.m │ ├── KFFlyCommentView.h │ └── KFFlyCommentView.m ├── ViewController.h ├── ViewController.m ├── YGFlyCommentModel.h ├── YGFlyCommentModel.m ├── YGFlyCommentViewAnother.h ├── YGFlyCommentViewAnother.m └── main.m └── README.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/.travis.yml -------------------------------------------------------------------------------- /KFFlyCommentViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/xcshareddata/YGFlyCommentDemo.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo.xcodeproj/project.xcworkspace/xcshareddata/YGFlyCommentDemo.xcscmblueprint -------------------------------------------------------------------------------- /KFFlyCommentViewDemo.xcodeproj/xcshareddata/xcschemes/YGFlyCommentDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo.xcodeproj/xcshareddata/xcschemes/YGFlyCommentDemo.xcscheme -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color@2x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_qq_color.imageset/home_login_qq_color@3x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color@2x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_wechat_color.imageset/home_login_wechat_color@3x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color@2x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/home_login_weibo_color.imageset/home_login_weibo_color@3x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/icon_120-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/icon_120-1.imageset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/icon_120-1.imageset/icon_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/icon_120-1.imageset/icon_120-1.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/Contents.json -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart@2x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Assets.xcassets/rank_charm_heart.imageset/rank_charm_heart@3x.png -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/CustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/CustomView.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/CustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/CustomView.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/GoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/GoViewController.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/GoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/GoViewController.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/Info.plist -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentTrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentTrackView.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentTrackView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentTrackView.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentView.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/KFFlyCommentView/KFFlyCommentView.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/ViewController.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/ViewController.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/YGFlyCommentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/YGFlyCommentModel.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/YGFlyCommentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/YGFlyCommentModel.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/YGFlyCommentViewAnother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/YGFlyCommentViewAnother.h -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/YGFlyCommentViewAnother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/YGFlyCommentViewAnother.m -------------------------------------------------------------------------------- /KFFlyCommentViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/KFFlyCommentViewDemo/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkfpk6/KFDanmaku/HEAD/README.md --------------------------------------------------------------------------------