-(MyClass*) set:(int) x andb:(int) y {
self = [super init];
if(self) {
a=x;
b=y;
return self;
}
-(MyClass*) set:(int) a andb:(int) b;
Do not match. The method argument should be -(MyClass*) set:(int) x andb: (int) y;
Hi Team,
I am very new in this technology .I want to learn the technology properly .Please help me sending anything that relates TO ANY VALID BASIC Objective C .
Thanks & Regards,
Anirban Roy
Wrong codeRyan December 29, 2011 at 2:46 AM
-(MyClass*) set:(int) x andb:(int) y { self = [super init]; if(self) { a=x; b=y; return self; } -(MyClass*) set:(int) a andb:(int) b; Do not match. The method argument should be -(MyClass*) set:(int) x andb: (int) y;
Objective CAnirban Roy July 13, 2012 at 5:52 PM
Hi Team, I am very new in this technology .I want to learn the technology properly .Please help me sending anything that relates TO ANY VALID BASIC Objective C . Thanks & Regards, Anirban Roy
Post your Comment