我想从我的iPhone应用程序检查我的LAN上IP地址的可达性。 是否有人知道如何检查。
答案 0 :(得分:1)
尝试使用您打算使用的任何服务/协议/端口连接到它。
答案 1 :(得分:0)
Reachability
绝对是这个&使用它也很简单。这是我使用的代码:
- (BOOL)_connectedToInternet
{
Reachability*_currentReachability = [Reachability reachabilityForInternetConnection];
if (_currentReachability.currentReachabilityStatus == NotReachable)
{
return NO;
}
return YES;
}
一个简单的谷歌搜索也会透露这一点。 Apple出于充分的理由撰写了开发人员文档......