Is it possible to change the default text (something like “looking for other iPhones and iPod touches”) in the GameKit’s GKPeerPickerController?
I’ve seen solutions that are completely custom but I was wondering if i can avoid that hassle and just change the default text.
You could mess with the
GKPeerPickerController‘s view hierarchy which could break with future OS versions.If you’re looking to build your own controller to let the user connect to another device, just forget about using the picker controller and use a simple
GKSessioninstance yourself. Have a look at Beam It!, it’s open source (just scroll down a bit).