iOS 獲取手機網(wǎng)絡的 ip 地址
之前在接微信支付的時候,統(tǒng)一下單可以在移動端實現(xiàn),也可以在后臺實現(xiàn),但是不管在哪里實現(xiàn),都需要獲取網(wǎng)絡ip, 當然這個在后臺實現(xiàn)就不是問題了,但是在移動端實現(xiàn),就要注意獲取的 ip 是 wifi狀態(tài)下的還是手機網(wǎng)絡環(huán)境下!!!下面介紹獲取手機 ip 的方法
- 在.h文件 (導入)
#include <ifaddrs.h>
#include <arpa/inet.h>
#include <net/if.h>
- 獲取 ip 的方法
- (NSDictionary *)getIPAddresses
{
NSMutableDictionary *addresses = [NSMutableDictionary dictionaryWithCapacity:8];
// retrieve the current interfaces - returns 0 on success
struct ifaddrs *interfaces;
if(!getifaddrs(&interfaces)) {
// Loop through linked list of interfaces
struct ifaddrs *interface;
for(interface=interfaces; interface; interface=interface->ifa_next) {
if(!(interface->ifa_flags & IFF_UP) /* || (interface->ifa_flags & IFF_LOOPBACK) */ ) {
continue; // deeply nested code harder to read
}
const struct sockaddr_in *addr = (const struct sockaddr_in*)interface->ifa_addr;
char addrBuf[ MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) ];
if(addr && (addr->sin_family==AF_INET || addr->sin_family==AF_INET6)) {
NSString *name = [NSString stringWithUTF8String:interface->ifa_name];
NSString *type;
if(addr->sin_family == AF_INET) {
if(inet_ntop(AF_INET, &addr->sin_addr, addrBuf, INET_ADDRSTRLEN)) {
type = IP_ADDR_IPv4;
}
} else {
const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6*)interface->ifa_addr;
if(inet_ntop(AF_INET6, &addr6->sin6_addr, addrBuf, INET6_ADDRSTRLEN)) {
type = IP_ADDR_IPv6;
}
}
if(type) {
NSString *key = [NSString stringWithFormat:@"%@/%@", name, type];
addresses[key] = [NSString stringWithUTF8String:addrBuf];
}
}
}
// Free memory
freeifaddrs(interfaces);
}
return [addresses count] ? addresses : nil;
}
- 獲取的字典里面有(wifi 和手機網(wǎng)絡下的 ipv4 和 ipv6的地址分別兩個)
注意:我記憶中打印出來的 en0就是 wifi 的 ip, 而 lo0則是手機網(wǎng)絡下的 ip, 大家實際使用的時候注意就行了!!!