Is there an ActivityIndicator (or something like it) in WatchKit for Apple Watch? How do you all give the user feedback about some longer lasting background activity?
watchKit do not have indicator object. so use image to show indicator. Add your image in assets
And use this code to start animate image
image.setImageNamed("Small_Indicator")
image.startAnimatingWithImages(in: NSMakeRange(0, 39), duration: 1.0, repeatCount: 0)
And use this code to stop
image.stopAnimating()
image.setHidden(true)
Refer the link and Use this sample project to show indicator https://github.com/Abishekt97/AppleWatchIndicator