Reputation: 2026
I'm new to network programming. This is probably a stupid question, would it be okay for my server to be in C++ for my iOS application?
Upvotes: 0
Views: 370
Reputation: 14694
iOS does not care what your server is programmed with. You can use whatever you feel comfortable with. Remember, you aren't going to be sending executable code to the server - you are just going to be sending requests and the server will send a response.
Upvotes: 1
Reputation: 89509
Yes, your server can be written in any way you want, provided you define the correct protocol (method of communication) between your iPhone app (client) and the server.
XML, JSON, HTTP POST or GET's, whatever. It should all work, provided you code both sides correctly.
Upvotes: 0