Reputation: 10796
I understand the "Xcode Specific Label" section.
What I don't understand is the "Notes" section. I've played around with it and can't see any discernable effect.
Can anyone explain this?
Upvotes: 9
Views: 3117
Reputation: 437682
It's saving an attributed string with a key of userComments
to the storyboard file.
<attributedString key="userComments">
<fragment content="These are the comments I entered in the notes section of Interface Builder">
<attributes>
<font key="NSFont" size="11" name="LucidaGrande"/>
<paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural"/>
</attributes>
</fragment>
</attributedString>
I don't know of any practical use of this, though. It would be nice to be able to retrieve this programmatically, though.
Upvotes: 2