如何描述oc中的内部类?

时间:2016-06-14 08:15:38

标签: objective-c syntax

我在“CountryInfoLoader.h”中定义了CountryInfo类;

@interface CountryInfo : NSObject

@property(nonatomic,strong)NSString * code;
@property(nonatomic,strong)NSString * name;
@property(nonatomic,strong)NSString * prefix;

@end

@interface CountryInfoLoader : NSObject

+ (CountryInfo*)currentCountry;
+ (NSArray*)loadAllCountries;
+ (NSDictionary*)loadGroupCountries;

@end

所以:1。我如何描述“CountryInfoLoader.h”中定义的“CountryInfo”? innner类(比如java),实例方法,属性还是什么?

  1. “CountryInfoLoader.h”中的定义和解压缩到“CountryInfo.h”/“CountryInfo.m”的区别是什么?

0 个答案:

没有答案