Does using “From” or “With” in a method name mean anything?
[NSIndexPath indexPathForItem:item inSection:section];
[NSIndexPath indexPathWithIndex:index];
If so I would guess that “With” retains and “From” does not, but I have never heard any discussion on this.
If not why have a difference in the way the methods are named? Would it not mean the same thing if they both had “With” or both had “From”
it doesnt mean anything, just helps to make the methods more readable and human friendly.