Game World!

Join A World Of Gamers

Enter your email address:

Delivered by FeedBurner

Followers

Popular Posts

Sunday, 27 June 2021

What is AppDelegate H?

 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?

2

.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.

Floating Button

Button