iOS detect WiFi hotspots or Bluetooth Devices

不想你离开。 提交于 2019-11-27 12:07:59

问题


I know that without users permission trying to switch on WiFi or Bluetooth is not possible (rather comes under private API). I dont want to go there.

Assuming WiFi is switched on or assuming bluetooth is switched on. Is it possible to detect all Wifi hotspots around my device (iPhone or iPad)? Same for Bluetooth?

I want to do this in Xcode Version 4.x with iOS SDK 4.3


回答1:


Update
Apple has deprecated a large part of the GameKit peering methods in iOS7. Added updated information for iOS8.

iOS7 and earlier - GameKit/Wi-Fi;
The GameKit documentation contains all the information required to set up a peering mechanism using bluetooth The GKPeerPickerController is the most important part for peering.

For peering using Wi-Fi; Apple's Reachability example uses such a mechanism

iOS8
In iOS8 Apple has introduced the Multipeer Connectivity Framework. Using this you can start using peering for Wi-Fi, bluetooth and other available services more easily. For starters you can use the MCNearbyServiceBrowserClass to search for nearby devices and invite users a peer-to-peer session.



来源:https://stackoverflow.com/questions/6162093/ios-detect-wifi-hotspots-or-bluetooth-devices

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!