You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
Protocol for storing information about a diff.
Two things that kind of suck:
- As of XCode 6.1.1, There's some kind of bug between the @NSManaged directive, protocols, and the compiler, so we can't set these as actual @NSManaged properties in out models, thus the weird names
- We have to add the @objc or else the compiler won't let us assign back to these variables, despite having defined setters.
*/
@objcpublicprotocolDiffable{vardiffUrlString:String?{getset}vardiffString:String?{getset}}
As expected, the whole comment shows up in the "Protocols available globally section" under "Diffable". But if I document the two variables "Diffable" gets it's own section, and we only get the first line of the comment. Removing the blank line gives me two lines of documentation, but we don't get the list. See attached.
Properties not documented:
Properties documented (documentation is truncated):
The text was updated successfully, but these errors were encountered:
I've got the following file in my project:
As expected, the whole comment shows up in the "Protocols available globally section" under "Diffable". But if I document the two variables "Diffable" gets it's own section, and we only get the first line of the comment. Removing the blank line gives me two lines of documentation, but we don't get the list. See attached.
Properties not documented:
Properties documented (documentation is truncated):
The text was updated successfully, but these errors were encountered: