0

为什么 testVariableValues 没有方法 dictionaryWithObjectsAndKeys?

@property (nonatomic, strong) NSDictionary *testVariableValues;

我正在尝试使用这样的方法:

[self.testVariableValues dictionaryWithObjectsAndKeys:......]

唯一可用的方法是[self.testVariableValues dictionaryWithValuesForKeys...

我是 Objective C 的新手,对这个问题没有太多的想法。与实例方法有关吗?

4

1 回答 1

2

您正在混淆类方法和实例方法。

你需要打电话

 self.testVariableValues = [NSDictionary dictionaryWithObjectsAndKeys:obj1, @"key1"..., nil].

希望有帮助。

于 2012-12-13T16:30:47.740 回答