Creating the multipeer session class
First, we will create an MCSession object to create a session. The init
takes three parameters:
- The
peerID
of the current device. - The security identity to secure the connection (in this case, we are not going to, as we are aware who we are connecting to).
- The encryption preference. We can specify the required, preferred, or undesirable encryption. We will enable encryption by stating the required encryption.
Next, we will add a button for the Advertiser and the Browser.
If the device is an Advertiser, then the AdvertiseSelf
function will be called. This will start the MCAdvertiserAssistant
to get ready to connect to other devices.
If the device is a Browser, then the user will click the browse button to look for advertisers and get a list of Advertisers to connect to.
We will create functions to send information to all the peers and will send information regarding the current surroundings, any anchors that were added, and any other data sent.
We will also create...