Lottie Frameworkを使用してJSONファイルからアニメーションタイプインジケータをロードしています。インジケーターの色のアニメーションを変更したいです。 JSONファイルから色を変更したくありません。プログラムでアニメーションビューの色を変更したいです。
例えば:(。。。) - >タイピングインジケータ(ドットカラーを変更したい)
前もって感謝します
private let animationView = LOTAnimationView(name:
Constants.ImageAssets.typingIndicatorIcon, bundle:Bundle(identifier: Constants.GenericKeys.bundleIdentifier)!)
private func loadTypingIndicator() {
animationView.loopAnimation = true
animationView.translatesAutoresizingMaskIntoConstraints = true
// *** It's not working
animationView.setValue(UIColor.green, forKeypath: "boule.Ellipse 1.Fill 1.Color", atFrame: 0)
animationView.play()
}
_