Questions tagged [multipeer-connectivity]

The MultipeerConnectivity framework is an iOS 7 framework for connecting to nearby peers over Bluetooth, Wi-Fi, or P2P.

Introduced in iOS 7, MultipeerConnectivity is a framework for connecting to nearby peers over Bluetooth, Wi-Fi, or P2P, without distinction between the transport layer being used. Many devices can be connected using any of the available transport layers automatically.

486 questions
-1
votes
1 answer

Multipeer-Connectivity Managing Peers Manually

According to the Apples reference(Managing Peers Manually),I can write my own peer discovery.I dont want using default peer discovery code,how can I write my own peer discovery code?
shaichun
  • 59
  • 7
-1
votes
1 answer

Multipeer Connectivity just stopped finding peers all of the sudden

I used this piece of code to initialize an advertiser and a browser: peerid = [[MCPeerID alloc] initWithDisplayName:[shared.identity objectAtIndex:0]]; session2 = [[MCSession alloc] initWithPeer:peerid]; session2.delegate = self; …
-1
votes
1 answer

Can iOS detect and pair to an Android devices over bluetooth?

I am looking to develop an iOS and Android application which will allow users to chat to each other via bluetooth however I am unsure if this is possible with Apple Restrictions. Currently I have written a test iOS app using Multipeer Connectivity…
MonkeyBlue
  • 2,126
  • 6
  • 30
  • 39
-2
votes
1 answer

what is the actual metaphysical radius for the iOS Multipeer Connectivity Framework?

I've been walking around testing the range and it seems to be about 10 feet but maybe thats my simulator & iPad beta test combo. Apples documentation just says "nearby devices". What it the actual range and would it possible to spread that range to…
Program2
  • 11
  • 1
-2
votes
1 answer

multipeer connectivity - How can I set up to have one host sending out data to multiple peers?

I have the code for the basic multipeer connectivity so that a chat can be set up between two devices and send a file to one other device. But how can I have it so there is one host, to whom other devices can connect to?
-3
votes
2 answers

How to view the MCBrowserViewController in the Multipeer Connectivity framework using swift 4

i have been trying to get Multipeer connectivity to work IN SWIFT 4, but i cant view the MCBrowserViewController, I’m new to swift so can anyone help? I also am aiming to make this,…
1 2 3
32
33