v0.1.9
Note: This release contains a few breaking changes. So please pay attention!
Before:
player.addObserver(self, events: [PlayerEvent.DurationChanged.self]) { event in print(event.duration)
}After:
player.addObserver(self, events: [PlayerEvent.durationChanged]) { event in print(event.duration)
}
Cocoapods
https://cocoapods.org/pods/PlayKit
Fixed Bugs & Issues
- Support Obj-C Application (event observation + IMA) , for more info
- Application State Changes Internal Support, for more info