BLACK FRIDAY: Save 50% on all my Swift books and bundles! >>

Prevent an Apple Watch app from sleeping on SwiftUI, not working

Forums > Swift

@Apps  

have tried this:

import UIKit

...

.onAppear {
    UIApplication.shared.isIdleTimerDisabled = true
}

NOPE

ERROR: Cannot find 'UIApplication' in scope

and I am importing UIKit

why?

2      

This is basically because UIApplication does not exist on watchOS:

https://developer.apple.com/documentation/uikit/uiapplication

I'm not familiar with watchOS development, but if you describe what you want to achieve, perhaps somebody knows what's available on watchOS to do the same thing.

2      

On WatchOS you need specific background modes enabled to prevent your app going to sleep. Or do you just mean that the screen shouldn't go black?

2      

@Apps  

@Hatsushira, I just want the screen not to go black. When it does, the app goes to inactive. I want the app to continue active and running, as it does when I am debugging on the simulator.

I can detect the app going to inactive, as the screen goes black by using this


  @Environment(\.scenePhase) var scenePhase

    .onChange(of: scenePhase) { newPhase in
      if newPhase == .active {
        print("Active")
      } else if newPhase == .inactive {
        print("Inactive")
      } else if newPhase == .background {
        print("Background")
      }
    }

2      

I doubt this is possible if you don't use the special background sessions. But they're restricted to special use cases. With these the screen goes black anyway but the app still runs. I created a workout app for me and that was the way to go.

2      

@Apps  

thanks!

2      

In apple watch as I'm using you need to apply such backgrounds that keep on running and consumes alot of battery inorder for you'r watch not to go to sleep mode.Thanx🥰.

2      

Save 50% in my WWDC sale.

SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.