vote up 0 vote down star
1

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!

flag

71% accept rate
Are you looking to create a native iPhone application or a web-app? – Ben S Nov 5 at 16:15
I want to create a native app because I need to check if the UDID is in my server database! :) – Obliviux Nov 5 at 16:19

3 Answers

vote up 1 vote down check

Take a look at the accepted answer for this question, it gives a code sample on how to make the URL connection.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

You can communicate with a server using HTTP using the URL Loading System

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.