How to create a Mac / PC PC application that works with iPhone / iPad?

Can someone point me in the right direction to create a Mac / PC application that runs in the background and connects to the iPad application via a local Wi-Fi network?

No matter how I express my search on Google, it just launches various applications, such as a remote mouse and much more, as well as no tutorials or even tips on where to start.

I just need to send simple commands from iPad to computer via local Wi-Fi. Point in the right direction, and I can probably fill in the blanks.

Thank.

Thomas

EDIT: I use web languages ​​for the iPad version, which I will create as a native application using open source tools.

+3
source share
1 answer

OK then. Actually, it depends on what you really need. I made the assumption that you need real-time data transfer and possibly binary transfer.

It’s best to write your server application using standard C or C ++ so that it compiles as easily as possible. If you want to avoid the burden of writing a protocol for discovering a service or asking users to enter the IP address of your server, you will use the mDNS implementation for your server and your iPhone application.

If I were you, I would try bonjour: http://www.apple.com/support/bonjour/ on the iPhone. You can start here: http://developer.apple.com/library/mac/#documentation/Networking/Conceptual/NSNetServiceProgGuide/Articles/PublishingServices.html

, , iPhone-. , , WiFi.

Windows , Mac OS X/UNIX , , .

!

+1

All Articles