when I write code with prompt like this
/*
this is prompt
*/
@property (nonatomic,strong) NSArray *objcTypeArray;
1、then I will call this property like
[self objcTypeArray];
but not see the word "this is prompt",
so I only jump this property can know it's mean.
2、or I will call this property like
self.objcTypeArray;
but not see the word "this is prompt",
so I only jump this property can know it's mean.
3、at last drect write code : _objcTypeArray
the word "this is prompt", finnaly appear.
I remember the previous version of Xcode is to support the above several wording,but why Xcode8.2.1 only user _objcTypeArray can see the prompt.