Objective-C:未知类型名称错误

时间:2016-02-24 22:42:25

标签: objective-c types nsmutabledictionary

我有我的主类和SiteValue类。错误"未知类型名称"出现在我的主要班级。我正在尝试创建一个SiteValue对象的可变字典。

int main(int argc, const char * argv[]) {
@autoreleasepool {
    NSMutableDictionary *dictionary = nil;

 //The line below shows the error
    SiteValue* person1 = [SiteValue siteValueWithUsername: @"person1"     andPassword: @"123" andCount: 0];

}
return 0;

}

SiteValue.h文件:

@interface SiteValue : NSObject

+(SiteValue*) siteValueWithUsername: (NSString *)username andPassword: (NSString *)password andCount: (int) count;

@end

0 个答案:

没有答案