Cocoa Core Competencies_Accessor method

注: 该系列文章翻译自iOS Developer Library –> Cocoa Core Competencies

Cocoa Core Competencies, 顾名思义 Cocoa核心概念。只是各个部分概念介绍, 更加详尽的学习, 参见各个章节提供的相关链接。

译者水平有限, 难免存在各种问题, 欢迎指正交流。

欢迎转载, 转载请注明出处: Colin

Accessor method

访问/存取 方法

An accessor method is an instance method that gets or sets the value of a property of an object. In Cocoa’s terminology, a method that retrieves the value of an object’s property is referred to as a getter method, or “getter;” a method that changes the value of an object’s property is referred to as a setter method, or “setter.” These methods are often found in pairs, providing API for getting and setting the property values of an object.

存取方法是一个可以获得(get)或者设置(set)一个对象的属性值的实例方法。在Cocoa的术语中,一个检索对象属性值的方法被称为getter方法,或者"getter;",一个改变对象属性值的方法被称为setter方法,或者“setter.”这些方法通常成对建立,提供获得(get)或者设置(set)对象属性值的API。

You should use accessor methods rather than directly accessing state data because they provide an abstraction layer. Here are just two of the benefits that accessor methods provide:

你应该使用存取方法而不是直接存取状态数据因为他们提供了一个抽象的层。下面是存取方法所提供的两个好处:
  • You don’t need to rewrite your code if the manner in which a property is represented or stored changes.
· 你不需要重写你的代码如果一个描述或者存取属性的方法改变。
  • Accessor methods often implement important behavior that occurs whenever a value is retrieved or set. For example, setter methods frequently implement memory management code and notify other objects when a value is changed.
· 存取方法常常实现重要行为是无论何时一个值被检索或者设置都会被重现。例如,当一个值被改变的时候, 设置方法频繁的实现内存管理代码并且通知其他对象。

Naming Conventions

Because of the importance of this pattern, Cocoa defines some conventions for naming accessor methods. Given a property of type type and called name, you should typically implement accessor methods with the following form:

因为这种模式的重要性,Cocoa定义了一些命名存取方法的规则。给出一个属性的类型type和称呼name,你应该通过下面的格式,来实现存取方法:
- (type)name;
- (void)setName:(type)newName;

The one exception is a property that is a Boolean value. Here the getter method name may be isName. For example:

有个例外是属性为Boolean值。getter方法名字应该是isName。例如:
- (BOOL)isHidden;
- (void)setHidden:(BOOL)newHidden;

This naming convention is important because much other functionality in Cocoa relies upon it, in particular key-value coding. Cocoa does not use getName because methods that start with “get” in Cocoa indicate that the method will return values by reference.

    这种命名惯例很重要,因为在Cocoa中的很多其他的功能都依赖它,特别是key-value coding。Cocoa不使用getName因为以get开始的方法表明方法返回引用类型的值。

Prerequisite Articles

Key-value coding

Related Articles

Memory management

Declared property

Definitive Discussion

Use Accessor Methods to Get or Set Property Values in Programming with Objective-C

时间: 2024-10-10 14:19:36

Cocoa Core Competencies_Accessor method的相关文章

Cocoa Core Competencies_0_序

最近在iOS Developer Library里头学习, 收获挺多. 不过官方文档都是英文, 看起来倒是挺费劲的.想必也有许多朋友在学习过程中遇到困难.所以萌生了翻译一些官方文档的念头. 注: 该系列文章翻译自iOS Developer Library –> Cocoa Core Competencies Cocoa Core Competencies, 顾名思义 Cocoa核心概念.只是各个部分概念介绍, 更加详尽的学习, 参见各个章节提供的相关链接. 译者水平有限, 难免存在各种问题, 欢

Cocoa Core Competencies_3_App ID

注: 该系列文章翻译自iOS Developer Library –> Cocoa Core Competencies Cocoa Core Competencies, 顾名思义 Cocoa核心概念.只是各个部分概念介绍, 更加详尽的学习, 参见各个章节提供的相关链接. 译者水平有限, 难免存在各种问题, 欢迎指正交流. 欢迎转载, 转载请注明出处: Colin App ID An App ID is a two-part string used to identify one or more

Cocoa Core Competencies_1_Accessibility

注: 该系列文章翻译自iOS Developer Library –> Cocoa Core Competencies Cocoa Core Competencies, 顾名思义 Cocoa核心概念.只是各个部分概念介绍, 更加详尽的学习, 参见各个章节提供的相关链接. 译者水平有限, 难免存在各种问题, 欢迎指正交流. 欢迎转载, 转载请注明出处: Colin Accessibility Accessible apps can be used by everyone, regardless o

Object-C非正式协议与正式协议的区别

一.非正式协议 显然这个名词是相对于正式协议而言的.在解释非正式协议之前,先引用两段话: 1.在<Cocoa设计模式>第六章类别的6.3.2把类别用于非正式协议一节中,这样写到: 非正式协议通常定义为NSObject的类别.类别接口中指定的方法可能会或者可能不会被框架类实际地实现.非正式协议位于一种设计灰区中.正式协议由编译器检查并且代表一种关于对象能力的保证,但是非正式协议不会做出保证----而只会给出提示. 2.苹果官方文档Cocoa Core Competencies一文中是这样介绍非正

Object-C中的非正式协议与正式协议

之前对 "非正式协议"一词不甚理解,查阅一番后就自己的理解简单梳理一下, 下面是苹果官方文档Cocoa Core Competencies一文中对非正式协议的介绍: An informal protocol is a category on NSObject, which implicitly makes almost all objects adopters of the protocol. (A category is a language feature that enables

iOS 8:【转】类簇在iOS开发中的应用

源地址:http://limboy.me/ios/2014/01/04/class-cluster.html 类簇(class cluster)是一种设计模式,在Foundation Framework中被广泛使用,举个简单的例子 NSArray *arr = [NSArray arrayWithObjects:@"foo",@"bar", nil]; NSLog(@"arr class:%@", [arr class]); // output:

uiautomator的xpath选择器

官方的uiautomator是没有xpath选择器的,这里介绍一种利用xpath查找控件的方法. 首要的问题是,如何获取界面元素根节点. 先来看UiDevice的这段代码: public void dumpWindowHierarchy(String fileName) { AccessibilityNodeInfo root = getAutomatorBridge().getQueryController().getAccessibilityRootNode(); if(root != nu

iOS 面试题 总结

#include <iostream> using namespace std; int main () { char p[]={'a','b','c'}, q[]="abc"; printf("%d %d\n",sizeof(p),sizeof(q)); //getch(); } //结果 3,4 sizeof有什么作用呢? sizeof是C语言的关键字不并不是函数,这个很容易被忽略 sizeof(a)表示a在内存中所占的字节数 以下是windows

通用DAO之MyBatis封装,封装通用的增删改查(三)

曾将发布过俩篇关于Mybatis封装的文章,当时曾曾承诺过当测试没有问题后阿海会整理一下然后将原代码发布出来. 那么今天正好朋友找我要一份那套mybatis封装的源码,我便整理了一份,想想这么长时间了并没有发现什么明显的bug,于是决定将它发出来. 喜欢的朋友可以在这里下载: http://aiyiupload.oss-cn-beijing.aliyuncs.com/blog/img/2016/06/28/15/6d69ad50-ab53-4f4f-b4e7-1fed010bfdb9.rar 关