Apple代码示例,为什么他们直接在这里访问ivars?

时间:2013-09-23 14:49:50

标签: ios objective-c ivar

查看MultipeerGroupChat的Apple示例应用程序(特别是MainViewController.m):

https://developer.apple.com/library/ios/samplecode/MultipeerGroupChat/Listings/AdhocGroupChat_MainViewController_m.html#//apple_ref/doc/uid/DTS40013691-AdhocGroupChat_MainViewController_m-DontLinkElementID_8

该示例包含以下代码分配属性:

@property (retain, nonatomic) NSMutableArray *transcripts;
@property (retain, nonatomic) NSMutableDictionary *imageNameIndex;

然后在viewDidLoad中初始化它们:

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Init transcripts array to use as table view data source
    _transcripts = [NSMutableArray new];
    _imageNameIndex = [NSMutableDictionary new];

    ---SNIP---

他们是否有理由直接分配到ivars _transcripts和_imageNameIndex?我认为正确的约定规定你总是使用属性来访问变量,除非你在init方法中......实际上,在viewDidLoad方法中,作者确实使用属性来分配其他变量:

self.displayName = [defaults objectForKey:kNSDefaultDisplayName];

self.serviceType = [defaults objectForKey:kNSDefaultServiceType];

我知道Apple示例代码在过去有时会偏离良好的编码实践,所以我想知道这是不是只是草率编码,或者是否有正当理由直接在非初始化中访问这两个ivars方法

1 个答案:

答案 0 :(得分:1)

对于如何访问属性没有明确的方法。看到这只是一个演示项目,编写这个项目的工程师可能知道允许一些快捷方式的项目范围。

这里所做的并没有错,只是不推荐。