HJDanmaku-Swift is a high performance danmaku engine for iOS. For more details please click here
Compared to the version 1.0, HJDanmaku 2.0 has better performance, Such as high performance, large concurrent and better fluency. surely, you can customize the cell style according to product requirements. In version 2.0,it provides a new live mode to meet the live scene.
Get the version of objc at here
[Performance]
The average CPU usage for total is less than 5% .[Fluency]
The rendering frame rate (FPS) is stable at 60 frames.[Concurrency]
Off screen rendering ensures the stability of large concurrent data.
Dimension | 1.0 | 2.0 |
---|---|---|
Performance | ⭐️⭐️⭐️ | ⭐️⭐️⭐️⭐️ |
Fluency | ⭐️⭐️⭐️ | ⭐️⭐️⭐️⭐️⭐️ |
Accuracy | ⭐️⭐️⭐️⭐️ | ⭐️⭐️⭐️ |
Concurrency | ⭐️⭐️ | ⭐️⭐️⭐️⭐️⭐️ |
CocoaPods is a dependency manager for swift, which automates and simplifies the process of using 3rd-party libraries in your projects. See the Get Started section for more details.
pod 'HJDanmaku-Swift', '~> 2.0.0'
// init config with mode HJDanmakuModeLive
let config = HJDanmakuConfiguration.init(danmakuMode: .HJDanmakuModeLive)
self.danmakuView = HJDanmakuView.init(frame: self.view.bounds, configuration: config)
// init config with mode HJDanmakuModeVideo
let config = HJDanmakuConfiguration.init(danmakuMode: .HJDanmakuModeVideo)
self.danmakuView = HJDanmakuView.init(frame: self.view.bounds, configuration: config)
let danmakuModel = DemoDanmakuModel.init(danmakuType: .HJDanmakuTypeLR)
danmakuModel.text = "😊😊olinone.com😊😊"
self.danmakuView.sendDanmaku(danmakuModel, forceRender: true)
// register cell class before dequeue
self.danmakuView.register(DemoDanmakuCell.self, forCellReuseIdentifier: "cell")
// configure cell with custom style
let cell = (danmakuView.dequeueReusableCell(withIdentifier: "cell"))!
let model: DemoDanmakuModel = danmaku as! DemoDanmakuModel
cell.textLabel.font = model.textFont
cell.textLabel.textColor = model.textColor
cell.textLabel.text = model.text
HJDanmaku 1.0 was first released in 2015, You can get it in the folder HJDanmaku1. Surely, for better performance, we recommend the latest version 2.0.
HJDanmakuDemo is released under the MIT license. See LICENSE for details. Copyright (c) 2015 olinone.