You get this warning in X-code. X-code 4.6 needs a more readable format as follows
-(void) dateAge: (int) k : (int) i;
you should remove the white spaces between paramter type and variable like this:
-(void) dateAge:(int)k : (int)i;
You get this warning in X-code. X-code 4.6 needs a more readable format as follows
-(void) dateAge: (int) k : (int) i;
you should remove the white spaces between paramter type and variable like this:
-(void) dateAge:(int)k : (int)i;