diff --git a/Cocoa Programming Guidelines.pdf b/Cocoa Programming Guidelines.pdf index 0ff078e..1d58cd8 100644 Binary files a/Cocoa Programming Guidelines.pdf and b/Cocoa Programming Guidelines.pdf differ diff --git a/Cocoa Programming Guidelines.tex b/Cocoa Programming Guidelines.tex index d2162f5..d6b1f16 100644 --- a/Cocoa Programming Guidelines.tex +++ b/Cocoa Programming Guidelines.tex @@ -270,10 +270,12 @@ None of the attributes can be omitted with the exception of readwrite. @property (weak, nonatomic) id delegate; \end{codelisting} -Getters for boolean properties should be renamed as follows. +Getters for boolean properties should be renamed as follows if they are adjectives. \begin{codelisting} @property (assign, nonatomic, getter = isVisible) BOOL visible; +@property (assign, nonatomic, getter = isEnabled) BOOL enabled; +@property (assign, nonatomic, getter = isTracking) BOOL tracking \end{codelisting}