Objective-C中的“访问者”是什么?

时间:2013-11-13 08:15:59

标签: ios objective-c

就像图片一样,我不了解访问者的手段,有谁知道?

这是下面的代码

// KVC - overridden to access generic dictionary storage unless subclasses explicitly provide accessors
- (id)valueForKey:(NSString *)key;



// KVC - overridden to access generic dictionary storage unless subclasses explicitly provide accessors
- (void)setValue:(id)value forKey:(NSString *)key;

2 个答案:

答案 0 :(得分:2)

访问器只是提供对实例变量的读写访问的简单方法。

有关此事项的更多信息,请阅读以下链接。 它已经很老了但我觉得它仍然有用。

More info

答案 1 :(得分:0)

更新

访问者:访问者只不过是getter和

mutators:mutators只不过是setter。

请看一下这个链接:http://cocoadevcentral.com/d/learn_objectivec/

还要看一下:Please explain Getter and Setters in Objective C