-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to hide variables in @interface
declaration of a classes header?
#1061
Comments
I think the answer is to give them a doc comment containing |
Closing, answered. |
Sorry for not answering earlier. Adding the |
Oh ok - can you paste some code in please that shows the problem? |
|
(I haven't been an ObjC programmer for a long time so bear with me...) If you're talking about the @interface MySomeObject : NSObject {
/// :nodoc:
NSString *_property;
/// :nodoc:
NSDictionary *_someDict;
}
... If you're talking about the |
I’m speaking about the part next to the blue bar.
I only what to have
|
Got it! There's no way to get jazzy to do that, you have to edit the html yourself. If ObjC developers agree this is the right thing to do in general we could add it; #829 is also about editing the libclang declaration to be more human-consumable. |
I have still some instance variables in the headers in some classes. That should not show up in the doc.
The text was updated successfully, but these errors were encountered: