如何获取连接的WiFi设备的MAC地址?

时间:2015-12-22 04:47:02

标签: ios

我想要以下 android 版本的 iOS 等效代码。

    function getTotal() { $(':input[id^="barang_qty[]"]').keyup(function() {
      var total = 0;
      var $inputs = $(':input[id^="barang_qty[]"]');
      $inputs.each(function (index) { total += parseFloat($(this).val()) * parseFloat($(this).attr('data-price'));
        (function (total) {
            $("#barang_total[]").val(total); 
        })(total);
     });  
     $('#total').val(total); 
}); 

我可以从以下内容中获取WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiInfo info = manager.getConnectionInfo(); String address = info.getMacAddress();

ip

但是,在将WiFi设备连接到MAC后,可以更改此WifiManager * manager = [[WifiManager alloc ] init]; NSMutableDictionary *connectedWiFiInfo = [manager getWifiInformation]; ip等。因此,我正在寻找MAC地址。

0 个答案:

没有答案