0

I want to develop an IOS program that will communicate with internet and also communicate with nearby stuffs. Basically we want to notify the iPhone of cars plate numbers that's coming in.

I understand how iPhone can communicate with internet. But what about if we want faster communication that's near?

I know there is this "dock". Then there is wifi, then near field communication, and bluetooth.

To communicate with the web we need only to use https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/nsurlconnection_Class/Reference/Reference.html

What about if we want to use nearer communications?

What class should we use?

Note: I've heard iPhone close their dock API unless for special periperhal factory. Buying additional periperhal is fine as long as we got the API.

user4951
  • 32,206
  • 53
  • 172
  • 282

1 Answers1

1

Is it possible you are looking for a technology like Bonjour?

https://developer.apple.com/bonjour/

I believe Bonjour works for both Blue Tooth as well as wifi within a shared router.

Bryant Harris
  • 728
  • 5
  • 21
  • +1. I will select his as the answer in a few days. So bonjour can communicate with shared router and bluetooth. Very good. – user4951 Jul 26 '12 at 03:33