Search code examples
xcodethemesxcode5

What does xCode color scheme item "Attributes" stand for?


Working on an xCode color scheme, but I just can't make Attributes work. It actually does not tint __attribute__ statements.

enter image description here

// Not this.
NSString a* __attribute__((visibility("default")));
// Nor this.
__strong NSString *b;
// So what?

Solution

  • It's used with XML markup. You can see the applied attribute color by opening a storyboard as source code instead of interface builder.