瀏覽代碼

Fix iOS Example

Mattt Thompson 11 年之前
父節點
當前提交
00058e75b2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Example/Classes/Models/User.m

+ 1 - 1
Example/Classes/Models/User.m

@@ -28,9 +28,9 @@ NSString * const kUserProfileImageDidLoadNotification = @"com.alamofire.user.pro
 @interface User ()
 @interface User ()
 @property (readwrite, nonatomic, assign) NSUInteger userID;
 @property (readwrite, nonatomic, assign) NSUInteger userID;
 @property (readwrite, nonatomic, copy) NSString *username;
 @property (readwrite, nonatomic, copy) NSString *username;
+@property (readwrite, nonatomic, copy) NSString *avatarImageURLString;
 
 
 #ifdef __MAC_OS_X_VERSION_MIN_REQUIRED
 #ifdef __MAC_OS_X_VERSION_MIN_REQUIRED
-@property (readwrite, nonatomic, copy) NSString *avatarImageURLString;
 @property (readwrite, nonatomic, strong) AFHTTPRequestOperation *avatarImageRequestOperation;
 @property (readwrite, nonatomic, strong) AFHTTPRequestOperation *avatarImageRequestOperation;
 #endif
 #endif
 @end
 @end