tags:

views:

26

answers:

1

HI folks please Let me know Exact Difference between the Delegate.h and delegate.m and Viewcontroller.h and viewcontroller.m files and its usage

Thanks & regards

+1  A: 

A delegate is incidental to the operation of the object, whereas a controller is required. They are also on different "sides" of the object; the controller controls the view in question; and the object delegates functionality to its delegate, if present, putting the controller above the object and the delegate beside it.

Also, .h files contain declarations; .m files contain code, if that was what you were asking.

Williham Totland
yup, thanks Mr.Williham totland