Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
798 views

setting up iPhone P2P only over bluetooth and without GKPeerPickerController

I want to use a custom interface to connect with other iDevices in a p2p game. I know I can either use GKSession and GKSessionDelegate or use the lower level Bonjour browsing. But both of them will ...
10
votes
5answers
2k views

Is it possible, in principle, for an Android device to interface with an iPhone over Bluetooth/GameKit?

(I am not interested in pure theory, but as a practical near or mid-term possibility, say within 12-24 months.) As a developer familiar with (but not specializing in) two major smartphone platforms, ...
9
votes
3answers
2k views

Building my own game server for a turn-based multiplayer iPhone Game

From the Game Kit Programming Guide... Multiplayer allows players interested in playing an online multiplayer game to discover each other and be connected into a match. Depending on your ...
9
votes
3answers
3k views

iPhone p2p - Is there a way to connect to more than 1 devices?

Is it possible to connect to more than 1 devices using the new GameKit framework? Till now all the examples I've seen show how we can connect to 1 device. Even the default connection interface lets ...
8
votes
1answer
372 views

Using iOS GameKit's “Bluetooth Bonjour” with other platforms

I'm interested in connecting to iOS-based devices over Bluetooth. I can see that the "Local Network" service is exposed, but I cannot find any extra information about it. Property stored under key ...
8
votes
1answer
214 views

trouble negotiating a 2 player match in game kit

I am getting some behavior I can't decode from GameKit. sometimes the player who has done the inviting gets stuck in a 'waiting...' loop, and is unable to close the deal on his invitation. I believe ...
8
votes
1answer
3k views

GameKit wifi connection?

I've read that as of iPhone OS 3.1, GameKit supports wifi connections. But the documentation states: "If your application configures the peer picker to allow Internet connections, your ...
7
votes
1answer
1k views

iOS Development: Strange problem with authenticating Game Center user

I'm building an iPhone game that supports Game Center (GC). When the app launches, I try to authenticate the local player... if([GKLocalPlayer localPlayer].authenticated == NO) { ...
7
votes
2answers
1k views

How many clients can be supported by Gamekit server in IPhone 3.0

The GameKit in iPhone SDK 3.0 create a peer-to-peer bluetooth connection between two iPhones, using Server-client model. In the bluetooth spec, up to 7 clients can be connected to a server. But in ...
6
votes
2answers
225 views

How do I get notifications for GameKit Turn-Based matches?

I'm working on a turn based iOS game using the new turn-based iOS5 API. One of the delegate protocols you need to implement for this is GKTurnBasedEventHandlerDelegate. One of the methods to ...
6
votes
1answer
686 views

inviteHandler never called

I'm adding online two player to a game using Game Kit. My test devices are a 3rd gen iPod touch running 4.3.5 and a 2nd gen iPod touch running 4.2.1. Game Center notifications are turned on on both ...
6
votes
1answer
648 views

The peerID used in GameKit framework, is always unique for each device?

The peerID assigned to your device in a GKSession, is it always the same for the same device? I mean, every time you create a GKSession, your peerID will be the same one? or a random one is assigned ...
5
votes
2answers
188 views

iOS Online Game w/o Server?

I've made an iOS game that works over both Bluetooth and bonjour. It works great both ways, but I'd really like it if players could play with eachother with any Internet connection, be it edge, 3G, or ...
5
votes
1answer
198 views

Modifying mutable object in completion handler

I have a question about thread safety of the following code example from Apple (from GameKit programming guide) This is to load achievements from game center and save it locally: Step 1) Add a ...
5
votes
3answers
2k views

GameCenter login alert

In a game I am developing using GameCenter, I want to handle the following scenario: the user starts up the game. He is shown the system alert that prompts him to log on GameCenter. He ignores it ...
5
votes
2answers
826 views

GKPeerPickerController and GKSession

we can connect by bluetooth only iPodtouch or iPhone using GKSession and GKPeerPickerController right ? , or can we connect other bluetooth device ?
4
votes
1answer
375 views

iOS: Game center crash on simulator

This is driving me crazy, I just can't find out the problem: I have a crash on game center on simulator, in the device it works perfect. It crashes when I call the following code: [[GKLocalPlayer ...
4
votes
2answers
487 views

What is the best way to transfer an object between two iOS devices running the same app?

I'm trying to give my iOS app the ability to transfer an object to another iOS device running the same app. The object is on the order a few thousand KB of memory. Does anyone have a suggestion as ...
4
votes
2answers
778 views

How to specify Wireless or Bluetooth in GameKit when using my own custom interface

I've decided to implement my own interface for connecting two devices running my game, as opposed to using the GKPeerPickerController. This is actually working quite well. But I just realised that in ...
4
votes
1answer
421 views

NSSet to NSData, then back out again, for GameKit?

I'm trying to do some image edit syncing between two of the same app running on different iPhones. I would like to send an NSSet * from one device to another (which I imagine involves encapsulating in ...
3
votes
2answers
159 views

Game Kit Peer to Peer

I coded a bomberman application that uses a gamekit peer to peer connection. The problem is that after a while the game isn't in sync anymore. I looked at the sample code for GKTanks and used their ...
3
votes
2answers
117 views

How To Check If A User's iOS Device Supports Bluetooth Peer-To-Peer Connections

What is the best way of programatically checking if the current device supports Bluetooth peer-to-peer GameKit connectivity? I am aware of how to check for Game Center support, but want to support ...
3
votes
2answers
845 views

iOS Development: When receiving a Game Center invite, how do I obtain the GKMatch object?

I'm building an iPhone game that uses Game Center and I'm having a hard time understanding how to start a match game that was started by receiving an invitation to play from a friend. The docs say ...
3
votes
1answer
388 views

GameKit peer to peer wifi without wireless router?

Thanks in advance for any thoughts about this. I'm looking for a way to do realtime inter-app communication in iOS via wi-fi (I need about 150 ft range and don't think bluetooth offers this) and ...
3
votes
1answer
1k views

Is it possible to send Bluetooth data to Android from iOS?

I was wondering if it was possible to make GameKit broadcast data so that an Android device can get the information. I plan on sending XML data, (a Plist, nothing complex) if this is possible. I don't ...
3
votes
3answers
800 views

Simple guide to Game Center Integration?

Could anyone point me in the direction of an idiots guide to integrating Game Center into an iPhone app ? Please do not refer me to any Apple documentation as it's about as useful as a pork chop at a ...
3
votes
2answers
556 views

How to save and retry reporting GKAchievement's after network failure?

Apple states that if you want to report a GKAchievement but you get a network error, the best way to handle this is to save the GKAchievement (possibly adding it to an array), then periodically ...
3
votes
2answers
2k views

Authenticating GKLocalPlayer with Game Center

I am trying to authenticate a GKLocalPlayer with Game Center. However, the code supplied by Apple - (void) authenticateLocalPlayer { [[GKLocalPlayer localPlayer] ...
3
votes
1answer
923 views

How to programmatically detect Game Center?

I'm adding Game Center support to my game. Because my game can run on iOS versions back to 3.0, I want to have it fallback to just saving achievements and leaderboards locally in the absence of Game ...
3
votes
2answers
848 views

GameKit on 4.0 not ready for primetime? Stopping advertising services

Gamekit applications running under 4.0 do not properly handle removing GKSession objects. Running under 3.1.3 or 3.2, if a peer disconnects and the session is cleaned up (as in Apple demos): ...
3
votes
2answers
935 views

Using GameKit to transfer CoreData data between iPhones

I have an application where I would like to exchange information, managed via Core Data, between two iPhones. Has anyone attempted this and if so what is deemed to be the best approach to doing so ...
3
votes
1answer
3k views

GameKit: GKSession manual

I want to connect two devices using the GKSession, starting one as a server and the other one as a client. Using this configuration I can't use the GKPeerPickerController. I'm having problems for ...
3
votes
1answer
2k views

GameKit: What is the connection type when using GKSession without GKPeerPickerController : Resolved

I am implementing a BlueTooth and Wifi Based chat program for iPhone. For connection purpose I am using GameKit. But because of some special requirements application I can't use the default ...
3
votes
2answers
2k views

iPhone: Sending large data with Game Kit

I am trying to write an app that exchanges data with other iPhones running the app through the Game Kit framework. The iPhones discover each other and connect fine, but the problems happens when I ...
3
votes
1answer
3k views

GKSession Problems - Objective-C GameKit

Ok, I've been trying to create my own GKSession object and the delegate method is giving me an error in the console that I haven't figured out how to fix just yet. I was wondering if anyone had any ...
2
votes
1answer
58 views

GameKit: who's the Master?

I'm building an application (already on the app store by the way, called MotAMot): a boggle, free app. This game proposes several playing modes: standalone, multi players using the same iDevice and ...
2
votes
1answer
45 views

What is the range (distance) two devices can be connected using the iOS gamekit framework

I would like to develop an app using iOS gamekit library and I am curious to know what the maximum range is between the two devices. How far can they stay connected and communicating? Thanks!
2
votes
1answer
366 views

End Match if Home Button is Pressed

How would I end a match/disconnect the opposing player and/or remove the match maker standard interface (GameKit), if the Home button on the device is pressed? I also have a "Main Menu" button on ...
2
votes
1answer
286 views

Connection trouble with GKPeerPickerController

I am working on an iOS game with GKSession and GKPeerPickerController. I am finding that the process of connecting two iOS devices is slow and unreliable, even if they are right next to each other. ...
2
votes
1answer
939 views

Game not recognized in Game Center [closed]

Possible Duplicate: the game is not recognized by game center I know this has been asked a couple times, but the solutions in other threads, such as deleting the app from Simulator and ...
2
votes
1answer
595 views

Blocks and ViewController Thread Safety

I've been looking at the Game Center code example, GKTapper, and one section where the developer comments on his implementation does not make too much sense to me. The code is inserted below. What I ...
2
votes
1answer
322 views

iOS Gamekit Max Peer-to-Peer Size

In looking at the Gamekit documentation I see that the max Client/Server size for a game is 16. Is this the same as the size for peer-to-peer? Would it be possible for a peer to be in multiple games ...
2
votes
1answer
433 views

use game kit p2p communication between iPhone and Android

I am wondering if there is a way to use Game Kit p2p connmunication between an iPhone and Android. Thanks in advance for your help, Regards,
2
votes
2answers
1k views

Send and receive NSData via GameKit

I'm trying to send some NSData over Bluetooth through GameKit. While I've got GameKit set up and are able to send small messages across, I now would like to expand and send across whole files. I've ...
2
votes
2answers
586 views

iOS Development: Why doesn't loadScoresWithCompletionHandler ever return?

I'm playing with the Game Kit API and I have a very simple block of code that never returns, not even with an error... GKLeaderboard *pointsRequest = [[GKLeaderboard alloc] initWithPlayerIDs:[match ...
2
votes
1answer
130 views

Is registering your app through iTunesConnect required to test GameKit integration?

I'd like to add GameKit integration to my app. I was hoping to be able to evaluate how it works. From the docs I found, it seems that I have to register my app through iTunes Connect first. I'm new ...
2
votes
1answer
507 views

iPhone peer-to-peer voice chat

I see that Game Kit allows you to develop games with voice chat. I want to build a more general, peer-to-peer voice chat application, that does not have to live in the Game Center. So a couple ...
2
votes
3answers
308 views

Game Center between full and lite version

Is this possible? I want to implement multiplayer in my game using Game Center Matchmaking, but is it possible to let owners of the full version play against owners of the lite version? I couldn't ...
2
votes
2answers
614 views

How do I exchange data via Bluetooth using the iPhone SDK?

How do I exchange data programmatically via Bluetooth using the iPhone SDK?
2
votes
2answers
441 views

gamekit over the internet

the gamekit over wifi documentation talks about local wifi and that it's built on top of bonjour. Does that mean it does not work over the Internet, locating user/players in a different subnet, ...

1 2 3 4 5 6