Hi guys,
I'm having a problem with this:
-(id)initWithName:(NSString *)n description:(NSString *)d url:(NSString *)u {
I'm not really sure whats going on here, is the mehtod initWithName being passed an argument of n which is being casted to an NSString ? and is also being passed an argument d which is being casted to an NSString also?
What is the purpose of having the letters'n' and 'l' there? Do they need to be defined else where or are they just arbitrary argument names to help us remember what the arguments are?
Is this one method or three combined? Are 'description:' and 'url' methods too?
Sorry about this question being so basic, I'm just a little confused by this one.
Thanks,