Monday, 5 August 2013

what are ivars in programming ?

"ivars" are nothing but just those instance variables declared in the class.

e.g. in Objective C code

@interface Myclass : BaseClass
{
         int count;
         float get;          // instance variables / ivars / data members

}

No comments:

Post a Comment