tomaz / appledoc

Objective-c code Apple style documentation set generator.

Home Page:http://gentlebytes.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Handling of __deprecated

neilyoung opened this issue · comments

Could you please double check the handling of __deprecated?

I'm having a property, which I would like to deprecate

@property (nonatomic, assign) double strideLength __deprecated;

The compiler does recognize it correctly and demands deprecation every now and then. In the generated doc the property strideLength is now appearing as __deprecated and the initial name is lost

Changed the order. Works

@property (nonatomic, assign) double __deprecated strideLength;