I've seen another question about this (Understanding how to use methods found in Apple Developer Reference documentation), and it looks like it was closed for not being specific enough, so I wanted to ask a specific question to see if I could get at the same answer they were trying to get at.
I'm newer at this, and want to be able to read the Apple Documentation better, but I can't instantly see how I would know this (https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/#//apple_ref/occ/instm/NSArray/initWithObjects:count:):
- (instancetype)initWithObjects:(ObjectType)firstObj
turns into (something like) this (as an example):
rssFeedURLs = [[NSMutableArray alloc] initWithObjects: url1, url2, nil];
I'm sure its easy once it "clicks", so I was wondering if you could give me any help so that I can really understand this at a basic level a little easier.
I'm working my way thru programming books, tutorials, videos, etc right now to keep diving deeper into understanding foundations and basics. For whatever reason, I'm getting hung up on understanding Apple Docs methods, in terms of translating it to actual code.
Thanks for your patience and time!