Headerdoc, Objective-C, anonymous type, ERROR -
i have generate doc xcode's project objective-c. have error anonymous type
. think headerdoc doesn't @interface section. can resolve that?
my apologies grammar mistakes, have xcode's project objective-c, want generate doc script (i'm not @ work try explain problem). in project have class x
.h
/*! headerdoc comment */ @interface x: nsobject @end
.m
#import x.h @interface x(){ /*! headerdoc comment */ nsstring *_xid; } @end @implementation x /*! headerdoc comment */ -(void)amethod{ } @end
and when run, have error "anonymous type", , when removed @interface section in .m it's working.
Comments
Post a Comment