tonymillion / Reachability

ARC and GCD Compatible Reachability Class for iOS and MacOS. Drop in replacement for Apple Reachability
BSD 2-Clause "Simplified" License
6.97k stars 1.26k forks source link

iOS14 always get reachable on 4G with wrong hostname #185

Open luckyzd opened 3 years ago

luckyzd commented 3 years ago
Reachability *reach = [Reachability reachabilityWithHostname:@"abcd"];
reach.reachableBlock = ^(Reachability *reachability) {
            NSLog(@"ios14 always reachable on 4G ");
};
[reach startNotifier];

iOS14 x 4G not OK iOS14 x wifi OK iOS13 x 4G OK

Jacky-LinPeng commented 1 year ago

我记得以前是可以的... 是啥时候突然不行了???