views:

116

answers:

1

The one that asks you to select a wireless network?

It looks like a UIAlertView and UIPickerView combined? How do you use it

+5  A: 

You need to create your Custom UIAlertView. Check this tutorial out. It might help you.

Now, if you are looking for a magic class to resolve the issue without coding, the answer would be: there is no straightforward UI element that will achieve what you are trying to.

Pablo Santa Cruz
As Pablo mentions, that will be the correct solution since there is no native ui control to do that. Unless you want to establish peer to peer connections with other devices, then you could use GKPeerPickerController, this controller creates all the ui elements required in the workflow to achieve this.
Rigo Vides