问题描述
- ios如何获取局域网内所有ip
-
使用代码获取连在同一个局域网内的其它设备的ip地址,类似于搜索到周边的电脑的ip地址
解决方案
An iOS Local Area Network / wifi Scanner
https://github.com/mongizaidi/LAN-Scan
解决方案二:
http://stackoverflow.com/questions/17953119/how-scan-devices-in-a-lan-network
https://github.com/mongizaidi/LAN-Scan
https://developer.appcelerator.com/question/142993/how-can-i-make-an-ip-scanner
解决方案三:
- (NSString *)localIPAddress
{
? ? NSString *localIP = nil;
? ? struct ifaddrs *addrs;
? ? if (getifaddrs(&addrs)==0) {
? ? ? ? const struc......
答案就在这里:ios获取局域网ip
时间: 2024-11-02 03:44:08