How to perform call back functions in Objective-C?
I would just like to see some completed examples and I should understand it.
CallBack: There are 4 types of callback in Objective C
Selector type : You can see NSTimer,UIPangesture are the examples of Selector callback. Used for very limited execution of code.
Delegate Type : Common and most used in Apple framework. UITableViewDelegate, NSNURLConnectionDelegate. They are usually used to show Downloading many images from server asynchronously etc.
Please let me if any other answer for it. I will appreciate it.