about Code Annotation Tips

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.

Use HeaderDoc formatting. You can add the following as custom Code Snippets in XCode.


For Class or Property comments


/!
* <#Property or class name#>
* @brief <#brief text#>
* @abstract <#abstract text#>
* @discussion <#discussion text#>
* @code <#code#>
* @warning <#warning#>
*/


For Method comments


/!
* <#Method name#>
* @param <#name#> <#param 1#>
* @param <#name#> <#param 2#>
* @param <#name#> <#param 3#>
* @param <#name#> <#param 4#>
* @param <#name#> <#param 5#>
* @return <#name#> <#return type#>
* @brief <#brief text#>
* @abstract <#abstract text#>
* @discussion <#discussion text#>
* @code <#code#>
* @warning <#warning#>
*/

thank you very much,and this is my first time in the official forum questions, did not expect such a timely feedback.

This has been completely removed because of the Xcode prompt all the configuration.

The worst results can only reinstall the system, and see if radical

about Code Annotation Tips
 
 
Q