For some code like
if([aString writeToFile: @"outfile" atomically: YES])
I am wondering if atomically is a parameter or a parameter name?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Parameter name would be what the variable is called. I guess you could call it a parameter but parameter is a very general term in my opinion.
I think the correct thing to say is that it’s the method name, It’s a part of it. Just that you can have parameters in between to kind of split it up.
And btw this is one of the things I love in objective c, the code gets so readable thanks to it 🙂