I have a watchOS app that still uses storyboard. It displays a table where each row shows UIImageView.animationImages
.
Apple now suggests
WatchKit storyboards are deprecated in watchOS 7.0 and later. Please migrate to SwiftUI and the SwiftUI Lifecycle.
However I was not able to find a way to display animationImages
under SwiftUI on watchOS.
Under iOS I could probably use UIViewRepresentable
, see here, but this is not available on watchOS.
How can I display animated images under SwiftUI on watchOS?