IOS Basics
IOS Definitions id : The id type means that object variable can refer to any kind of object.The objects and classes it implements are not known when you compile the app #import derivative guards against including a single file multiple times property is an objective C directive that allows to generate accessors.here we can specify the name and type of the property @synthesize directive automatically generates setters and getters for us interface : the interface of class is usually stored in .h file and defines instance variables and public methods implementation : The implementation of a class is in .m file and usually contains the actual code of the methods - sign ->instance methods + sign -> class methods We need to create an instance to use instance methods whereas class methods are functions which class offers without creating object from that class MyClass *object; [object instanceMethod];