I am trying to check if the reachable property of a session is getting updated when iPhone bluetooth turns off
to do so, i have written a tiny app that changes label text on the watch
if session.reachable == true {
label.setText("YES")
} else {
label.setText("NO")
}
but the problem is that session.reachable is true always, all the time label text is "YES"
i have also tried sessionReachabilityDidChange , but it doesn't seem to be updating the reachable bool value
any idea? is it still buggy, or am i doing something wrong?