TheCesco1988
TheCesco1988

Reputation: 310

How to fix [WC] denying activation due to missing delegate Swift

Hi I have this function

extension UIViewController: WCSessionDelegate {
public func session(_ session: WCSession, activationDidCompleteWith activationState: WCSessionActivationState, error: Error?) {        
}
public func sessionDidBecomeInactive(_ session: WCSession) {

}
public func sessionDidDeactivate(_ session: WCSession) {
}


//MARK: -SYNC DATA TO APPLE WATCH

func syncToAppleWatch(){
    var session: WCSession?
    if WCSession.isSupported() {//4.1
      session?.delegate = self
      session = WCSession.default//4.2
      session?.activate()//4.4
    }

}

I call "syncToAppleWatch" inside DidLoad. But I receive this error

 [WC] denying activation due to missing delegate
 [WC] WCSession has not been activated

How Can I fix it?

Upvotes: 0

Views: 1082

Answers (1)

Sulthan
Sulthan

Reputation: 130102

These two lines make no sense

session?.delegate = self  // session is still nil here, delegate won't be set
session = WCSession.default

change the order to

session = WCSession.default
session?.delegate = self 

Upvotes: 3

Related Questions