Fixing warnings caused by implicit property attributes
This commit is contained in:
parent
447fb3a913
commit
321a2af79d
1 changed files with 3 additions and 3 deletions
|
|
@ -26,9 +26,9 @@ extern NSString * const kUserProfileImageDidLoadNotification;
|
||||||
|
|
||||||
@interface User : NSObject
|
@interface User : NSObject
|
||||||
|
|
||||||
@property (readonly) NSUInteger userID;
|
@property (readonly, nonatomic) NSUInteger userID;
|
||||||
@property (readonly) NSString *username;
|
@property (readonly, nonatomic) NSString *username;
|
||||||
@property (unsafe_unretained, readonly) NSURL *avatarImageURL;
|
@property (readonly, nonatomic, unsafe_unretained) NSURL *avatarImageURL;
|
||||||
|
|
||||||
- (id)initWithAttributes:(NSDictionary *)attributes;
|
- (id)initWithAttributes:(NSDictionary *)attributes;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue