Is there an ActivityIndicator in WatchKit for Apple Watch?

后端 未结 8 1173
轮回少年
轮回少年 2020-11-30 07:29

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?

8条回答
  •  渐次进展
    2020-11-30 08:06

    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

提交回复
热议问题