假设我有
@interface A : NSObject
@property (nonatomic, strong) NSMutableArray *array;
@end
稍后在另一个类B
中,我想访问该数组,以检查其中有多少项目。B
我可以在( a
is an instance of )中做两件事之一A
:
选项1
[a.array count]
选项 2
[[a array] count];
哪个选项是最好的方法?[a array]
当用作 getter 方法时,选项 2 是访问数组的正确方法吗?