Top "Delegates" questions

Delegates can refer to several concepts.

Difference between AppDelegate.m and View Controller.m

Could anyone tell me when we use the AppDelegate.m and AppDelegate.h during iPhone programming? I have used only …

iphone objective-c xcode delegates viewcontroller
How to subclass UIScrollView and make the delegate property private

Here is what I want to achieve: I want to subclass an UIScrollView to have additional functionality. This subclass should …

objective-c ios delegates uiscrollview subclass
Become UIScrollViewDelegate delegate for UITableView

I have a UITableView instance variable. I want to be able to register my view controller to be the UIScrollViewDelegate …

iphone cocoa-touch uitableview delegates uiscrollviewdelegate
How do C# Events work behind the scenes?

I'm using C#, .NET 3.5. I understand how to utilize events, how to declare them in my class, how to hook …

c# events .net-3.5 delegates
How to expose and raise custom events for a vb.net winforms user control

Please read THIS post. I have the same problem as described in this post but I am trying to do …

winforms events user-controls delegates event-bubbling
What is the difference between delegate in c# and function pointer in c++?

Possible Duplicate: are there function pointers in c#? I'm interested in finding the difference between delegate in C# and function …

c# c++ delegates function-pointers
Is it possible to have a delegate as attribute parameter?

Is it possible to have a delegate as the parameter of an attribute? Like this: public delegate IPropertySet ConnectionPropertiesDelegate(); public …

c# delegates custom-attributes
Delegates Vs. Notifications in iPhoneOS

I am trying to call a method in my root view controller from a child view controller such that when …

iphone delegates notifications
add generic Action<T> delegates to a list

Is it possible to add a generic delegate Action to a List collection? I need some kind of simple messaging …

c# generics collections delegates action
Alternative to jquery live that can work

I have this simple code. http://jsfiddle.net/borth/BmEZv/ If you click on the link once, it works fine. …

jquery delegates bind live