Improves spacing.

This commit is contained in:
Wojciech Nagrodzki 2015-06-12 00:03:05 +02:00
parent 34d085898b
commit 0e5b6d5b26
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569
2 changed files with 4 additions and 4 deletions

Binary file not shown.

View file

@ -286,15 +286,15 @@ None of the attributes can be omitted with the exception of readwrite.
\begin{codelisting}
@property (assign, nonatomic) CGFloat height;
@property (strong, nonatomic) UIColor * color;
@property (copy, nonatomic) NSString * name;
@property (weak, nonatomic) id <UITableViewDelegate> delegate;
@property (copy, nonatomic) NSString * name;
@property (weak, nonatomic) id <UITableViewDelegate> delegate;
\end{codelisting}
Getters for boolean properties, if they are adjectives, are renamed in the following manner:
\begin{codelisting}
@property (assign, nonatomic, getter = isVisible) BOOL visible;
@property (assign, nonatomic, getter = isEnabled) BOOL enabled;
@property (assign, nonatomic, getter = isVisible) BOOL visible;
@property (assign, nonatomic, getter = isEnabled) BOOL enabled;
@property (assign, nonatomic, getter = isTracking) BOOL tracking
\end{codelisting}