相关疑难解决方法(0)

如何在首次运行iphone时whatsapp知道国家/地区代码

当我第一次在iphone上安装whatsapp时,当我打开它时,第一个屏幕已经知道我的SIM卡位置并显示国家代码.whatsapp如何知道这一点?由于苹果拒绝所有以编程方式使用SIM卡信息的应用程序.

iphone country location ios whatsapp

14
推荐指数
2
解决办法
3080
查看次数

Objective-C:如何获取路由器地址?

我试着以这种方式获取路由器地址.

- (NSString *) routerIp {

  NSString *address = @"error";
  struct ifaddrs *interfaces = NULL;
  struct ifaddrs *temp_addr = NULL;
  int success = 0;

  // retrieve the current interfaces - returns 0 on success
  success = getifaddrs(&interfaces);
  if (success == 0)
  {
    // Loop through linked list of interfaces
    temp_addr = interfaces;
    while(temp_addr != NULL)
    {
      if(temp_addr->ifa_addr->sa_family == AF_INET)
      {
        // Check if interface is en0 which is the wifi connection on the iPhone
        if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"])
        {
          // Get …
Run Code Online (Sandbox Code Playgroud)

iphone router objective-c ip-address

7
推荐指数
2
解决办法
2万
查看次数

标签 统计

iphone ×2

country ×1

ios ×1

ip-address ×1

location ×1

objective-c ×1

router ×1

whatsapp ×1