How to update the dynamic island view after a certain interval of time in App kill state.?

815 views Asked by At

I want to start the dynamic island live activity for count down timer with event title.
Like christmas in 05 days.

I am trying to update it with the help of timer in extension, but not able to update the view.

 Timer.scheduledTimer(withTimeInterval: 1, repeats: true, block: { [self] time in
            
           
                 if minute < 1 {
                     updateActivity(dynamicIslandType: dynamicIslandType, minute: 0)
                     time.invalidate()
                }

I have tried this code in widget extension to update the view, but not able to get any update of the view.

0

There are 0 answers