The method declaration is used -(void). Presumably, you define it for someone else to call, rather than call it yourself.
The sign -indicates that the method is an instance method, unlike a class method. This requires the object to call it, and instance variables of the object are accessible to it within its definition.
(void) . , .