Skip to content

Commit

Permalink
Set properties as nonatomic.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielctull committed Oct 29, 2010
1 parent cb9580b commit f2cdbf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DTGridView/DTGridViewCell.h
Expand Up @@ -27,10 +27,10 @@
id<DTGridViewCellDelegate> delegate;

}
@property (assign) id delegate;
@property (copy) NSString *identifier;
@property (assign) BOOL selected;
@property (assign) BOOL highlighted;
@property (nonatomic, assign) id delegate;
@property (nonatomic, copy) NSString *identifier;
@property (nonatomic, assign) BOOL selected;
@property (nonatomic, assign) BOOL highlighted;
- (id)initWithReuseIdentifier:(NSString *)identifier;
- (void)prepareForReuse;
@end
Expand Down

0 comments on commit f2cdbf2

Please sign in to comment.