I’m writing a separate NSObject Class for my app, for WebService Calling, so i’m having a confusion that do i need to write init method explicitly like below,
-(id)init{
self = [super init];
return self;
}
or even though if i ignore this and try to call from another class will it work?
If you don’t need it you can safely ignore it.