So new to objective-c and iphone/ipad development. Trying to get my feet wet with a simple app to connect to one of our apis.
Right now I have a view with a user name and password input and button to submit. When it's clicked I grab those and try to authenticate against our server with a simple post call. I have that working using the NSURL stuff. I originally had it working by declaring the delegate methods for NSURLConnection in my view controller. Once I confirmed it was working properly I knew I needed to get that stuff out of there.
So I created a new class ApiLogin which has a method:
(void)authenticateWithUser:(NSString *)username andPassword:(NSString *)password
which does the post and then this object has the delegate methods declared and handles all that stuff. The next problem I ran in to was how to get any info back to the view controller. Since these were asynchronous calls I couldn't just have my method return data. So after some digging I tried out a solution that seemed to make sense. I created a custom delegate for my newly created class
(void)loginDidFinish:(NSString *)login
Which my view controller declares and uses. This worked perfectly.
So my question now is... am I going down a rabbit hole or is this good? I don't want to create a suite of classes or a class with children classes to handle server communication and data handling with a dozen of these delegate functions if that's bad form. Basically I'm asking, am I doing this right? Is there a better way? I feel like I've been given a new tool, and I see every problem as a chance to use that tool to solve it and don't want to make that mistake. Since I'm really new to iphone/ipad development and it's been a long time since I've done any serious C coding I feel a bit lost with some of this stuff.