Minor update

This commit is contained in:
Wojciech Nagrodzki 2014-02-12 23:29:05 +01:00
parent 83361716ac
commit 512a5d186c
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View file

@ -270,10 +270,12 @@ None of the attributes can be omitted with the exception of readwrite.
@property (weak, nonatomic) id <UITableViewDelegate> 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}