[Add] BideaseConnect 1.0.79
[CocoaPods.git] / Specs / 6 / b / f / PartyTime / 1.0.0 / PartyTime.podspec.json
blobc1aa5d97841067716804c05ca918868e9b0b63ac
2   "name": "PartyTime",
3   "version": "1.0.0",
4   "summary": "A light wrapper around MultiPeer connectivity framework which allows apps to quickly connect people without invitations.",
5   "description": "                   This is a light wrapper around the MultiPeer connectivity framework which quickly connects devices without having to send or receive invites. Here's the quick setup:\n\n Each device calls:\n \n    PLPartyTime *partyTime = [[PLPartyTime alloc] initWithServiceType@\"MyApp\"];\n    partyTime.delegate = self;\n    [partyTime joinParty];\n\n Each device will get a callback when anyone connects or disconnects. Note that any device which joins the party with this service type will automatically join without sending or receiving invitations.\n\n    - (void)partyTime:(PLPartyTime *)partyTime peer:(MCPeerID *)peer changedState:(MCSessionState)state currentPeers:(NSArray *)currentPeers;\n \n Then, anytime you want to send data, you can call a method to send to all connected users (peers) or an array of select peers.\n\n    - (BOOL)sendData:(NSData *)data withMode:(MCSessionSendDataMode)mode error:(NSError **)error;\n    - (BOOL)sendData:(NSData *)data toPeers:(NSArray *)peerIDs withMode:(MCSessionSendDataMode)mode error:(NSError **)error;\n\n The clients receiving data get the callback:\n\n    - (void)partyTime:(PLPartyTime *)partyTime didReceiveData:(NSData *)data fromPeer:(MCPeerID *)peerID;\n\n And that's it.\n There are a few more features of this library, but I'll let you read through the documentation to find those specifically. \n",
6   "homepage": "https://github.com/plivesey/PLPartyTime",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Peter Livesey": "plivesey453@gmail.com"
13   },
14   "platforms": {
15     "ios": "7.0"
16   },
17   "source": {
18     "git": "https://github.com/plivesey/PLPartyTime.git",
19     "tag": "1.0.0"
20   },
21   "frameworks": "MultipeerConnectivity",
22   "source_files": [
23     "PLPartyTime",
24     "MultipeerConnectivity"
25   ],
26   "requires_arc": true