I recently started reading iOS 10 by Tutorials and I wanted to ask some questions about the content.
Under the topic “The Grand Renaming”, why is the Swift 3 version of the method call to get a specific cell from a table view written as follows:
I looked up the method header and the “at” is written as an argument label and not as part of the method name:
My other question is about the following part of the same topic:
What is meant by “Allowing the ‘index path’ to be removed from the parameter name”? According to the method header above, indexPath is still a parameter name. Is this supposed to read “Allowing the ‘index path’ to be removed from the method name”?