Skip to content

Commit 321a2af

Browse files
committed
Fixing warnings caused by implicit property attributes
1 parent 447fb3a commit 321a2af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Example/Classes/Models/User.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ extern NSString * const kUserProfileImageDidLoadNotification;
2626

2727
@interface User : NSObject
2828

29-
@property (readonly) NSUInteger userID;
30-
@property (readonly) NSString *username;
31-
@property (unsafe_unretained, readonly) NSURL *avatarImageURL;
29+
@property (readonly, nonatomic) NSUInteger userID;
30+
@property (readonly, nonatomic) NSString *username;
31+
@property (readonly, nonatomic, unsafe_unretained) NSURL *avatarImageURL;
3232

3333
- (id)initWithAttributes:(NSDictionary *)attributes;
3434

0 commit comments

Comments
 (0)