IOS/objective-C : Fastest way to check for Internet connection - 2017
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>这个问题在这里已经有了答案</b>:
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>可达性是正确的方法……即使在 2017 年也是如此。</p>
<p>所有各种 Reachability 类都基于 Apple 的示例代码。</p>
<p>它可能看起来很复杂,因为它使用 C API。但是用法很简单:</p>
<pre><code>- (BOOL)connected
{
Reachability *reach = ;
if () {
NSLog(@"Device is connected to the internet");
return TRUE;
}
else {
NSLog(@"Device is not connected to the internet");
return FALSE;
}
}
</code></pre>
<p>如果您将使用 Apple 的 Reachability 类而不是 Tony Million 的,请将 <code></code> 替换为 <code> != NotReachable</code>。</p>
<p>不用担心 Apple 可能会拒绝使用它的应用。如果您遇到这种情况,只需将类从 Reachability 重命名为 MyReachability。</p></p>
<p style="font-size: 20px;">关于IOS/objective-C: Fastest way to check for Internet connection - 2017,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/42511656/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/42511656/
</a>
</p>
页:
[1]