Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the MainWindow.xib nib file for?

I am new to iOS developement, and i am trying to understand the whole cycle of iOS application developement, and i feel there's a missing part i just don't get it..

if the MainWindow.xib that is generated automatically by Xcode has a view that loads another xib/nib view inside it, then why we use it ?

like image 686
Anas Nakawa Avatar asked Aug 01 '10 09:08

Anas Nakawa


1 Answers

Your application needs a window so the system can display it to you on the device screen. In the window are various views which represent different areas of your application that users can interact with. Views can either be entire user interfaces, or individual UI controls.

The main window interacts with your application delegate to handle events that your application receives through the views.

like image 159
BoltClock Avatar answered Nov 14 '22 21:11

BoltClock