Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
I have tried going through this Question: How Does A Delegate Work and I still don't seem to have a full grasp on it. I am trying to use the CocoaAsyncSocket library to create a TCP socket connection. Thanks to help from a very friendly SO user, I have the following code to perform a read data request to the server:
Now, forgive my ignorance as I'm pretty new to iOS development. So now I have this method that I want to invoke which will perform my ReadData. The problem is, I do not know WHERE to put this method (I have several views, with several header/implementation files). I want this method to be a delegate method, but I do not know how to make it a delegate method. I want to invoke this delegate method from my view.
If anyone could explain:
- Where do I put this code? (What file, etc) - How do I make this a delegate method? - How do I invoke this delegate method?
I've been stuck on this all day, and I'm about to throw it the towel lol. Any and all help is much appreciated.
I found delegates a bit difficult to wrap my head around, too. The protocol review in CS193P (Fall, 2011) Lecture 9 has been helpful.
Steps to Delegate - From Lecture 9 1. Create the @protocol 2. Add delegate @property to delegators public @interface 3. Use delegate property inside delegators implementation 4. Set the delegate property somewhere inside the delegates @implementation 5. Implement the protocols method(s) in the delegate (include <> on @interface)
Replies
New app - See screenshots and details at www.globaclock.com.
If you want to
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeSteps to Delegate - From Lecture 9
1. Create the @protocol
2. Add delegate @property to delegators public @interface
3. Use delegate property inside delegators implementation
4. Set the delegate property somewhere inside the delegates @implementation
5. Implement the protocols method(s) in the delegate (include <> on @interface)
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesome