From 321a2af79df41b647b8f4e6de48adc28e146349c Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Mon, 4 Feb 2013 00:20:56 +0100 Subject: [PATCH] Fixing warnings caused by implicit property attributes --- Example/Classes/Models/User.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/Classes/Models/User.h b/Example/Classes/Models/User.h index 99d973b..20cd5de 100644 --- a/Example/Classes/Models/User.h +++ b/Example/Classes/Models/User.h @@ -26,9 +26,9 @@ extern NSString * const kUserProfileImageDidLoadNotification; @interface User : NSObject -@property (readonly) NSUInteger userID; -@property (readonly) NSString *username; -@property (unsafe_unretained, readonly) NSURL *avatarImageURL; +@property (readonly, nonatomic) NSUInteger userID; +@property (readonly, nonatomic) NSString *username; +@property (readonly, nonatomic, unsafe_unretained) NSURL *avatarImageURL; - (id)initWithAttributes:(NSDictionary *)attributes;