I am new to Objective-c , what is the difference between appdelegate.h and appDelegate.m? What is the difference between .h and .m files in general?
- 3possible duplicate of Concise description of how .h and .m files interact in objective c? – jscs Oct 11 '13 at 0:14
Add a comment
.h files are headder files, while .m are implementation files. Your headder files, in objective-c, typically contain the classes @interface section with all the instance variables, property declarations, and method prototypes.
Think of it like an outline of an essay. It has all the bullet points, while the paper itself has all the content.