Posts

Post not yet marked as solved
2 Replies
Hello, I had the same problem, I tried to add flags during the interruption and try to do an audio reset (re-creation of the AudioUnit instance) it worked but the problem I had this code error without the system sending me these interrupts
Post not yet marked as solved
4 Replies
I was among the people who misused the SCNetworkReachability, my algirithm was: (NetworkStatus) networkStatusForFlags: (SCNetworkReachabilityFlags) flags { NetworkStatus status = NotReachable; if (flags & kSCNetworkReachabilityFlagsReachable) { if (flags & kSCNetworkReachabilityFlagsIsWWAN) { status | = ReachableViaWWAN; } if (! (flags & kSCNetworkReachabilityFlagsTransientConnection)) { status | = ReachableViaWiFi; } } return status; } Who considers the status not reachable when I receive kSCNetworkReachabilityFlagsTransientConnection and I am reachable and not in WWAN. Thanks for your help