Friday, September 30, 2011

How to create custom 'init' method in Objective C


- (id)init
{
    if (self = [super init]) {
       
         //you can implement custom class here

    }
   
    return self;
}