Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
348 views
in Technique[技术] by (71.8m points)

swift - Why does declaring WKExtendedRuntimeSession inside a class cause a fatal error?

I'm new to Swift and came up with the following class to manage an extended runtime session (alarm):

import Foundation
import WatchKit

class Alarm: ObservableObject {
    private var session: WKExtendedRuntimeSession!

    func start() {
        session = WKExtendedRuntimeSession()
        session.start(at: Date())
    }

    func stop() {
        session.notifyUser(hapticType: .stop)
        session.invalidate()
    }
}

However, it fails with the following error:

Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value: file

Why is that? It works if I put the session declaration out of the class.

question from:https://stackoverflow.com/questions/65947905/why-does-declaring-wkextendedruntimesession-inside-a-class-cause-a-fatal-error

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...