UNICORN - iOS
UserModel.h
1 //
2 // UserModel.h
3 // 自由に拡張可能です
4 //
5 // Copyright (c) 2014年 saimushi. All rights reserved.
6 //
7 // XXX 利用する場合の注意事項
8 // modelのヘッダーファイルを、他のクラスのヘッダーでimportしないで下さい!
9 // 循環参照エラーになる場合があります!
10 // ヘッダーでmodelを利用する場合は、@class指定を使って下さい!
11 
12 #import "UserModelBase.h"
13 
14 @class ProfileModel;
15 
17 {
18  ProfileModel *profile;
19 }
20 
21 @property (strong, nonatomic) ProfileModel *profile;
22 
23 
24 @end
Definition: ProfileModel.h:14
Definition: UserModelBase.h:9
Definition: UserModel.h:16