In Ruby, when referring to the "downcase" method of the class "String", I write String#downcase. When talking about the "new" class method, I write String.new.
Is there something similar for Objective-C?
|
|
In Ruby, when referring to the "downcase" method of the class "String", I write String#downcase. When talking about the "new" class method, I write String.new. Is there something similar for Objective-C?
|
||
|
|
Given a class declaration like this
it is common practice to refer to |
||||||
|
|
|
If you are referring to a method like:
on class MyObject then you would call it like this:
|
||
|
|
|
gdb uses |
|||
|
|
String::new. The message sending notation is only used in examples, when referring to class instances. So, within the documentation ofString#downcasethere could be an example and within that example you would usestr.downcase. – Jörg W Mittag Aug 31 at 20:05