Hi guys! I want to create a Login and Registration page in Objective-C but I am very new in iPhone programming. How can i create that pages and how connect it to the server? Thanks to everyone can help me!
|
1
|
|||||
|
|
|
Take a look at the accepted answer for this question, it gives a code sample on how to make the URL connection. |
||
|
|
|
|
You'll want to expose the login and registration functionality as a web service, then you'll consume that service from the iPhone. Typically, you'll use an NSURLConnection to asynchronously connect to the web service, return your results as an XML document, parse the XML with an NSXMLParser, and react accordingly. There's definitely also the possibility of creating a socket connection to the server and communicating over your own protocol, but using a web service makes things much easier and allows you to easily support other devices in the future. |
||
|
|
|
|
You can communicate with a server using HTTP using the URL Loading System |
||
|
|
