Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSApplication vs UIApplication

What Is the difference between UIApplication and NSApplication? (As I am not getting it from their documentation...)
Can someone give me some useful links for detailed explanation about their differences?
Also, What is the key role of AppNameAppDelegate.m (and .h) in iOS Application?
Thank You.

like image 728
viral Avatar asked Aug 25 '11 09:08

viral


1 Answers

UIApplication is the iOS singleton application base class. NSApplication is the MacOS application base class.

Look at this for a more detailed exploration on delegation and the implementations of UIApplication and NSApplication.

like image 95
ennalax Avatar answered Oct 01 '22 18:10

ennalax