Xcode/Interface Builder 忽略了填充颜色设置
Xcode/Interface Builder is ignoring the Fill Color setting
我在我的视图中添加了一个 NSBox,我将填充颜色设置为我想要的颜色:
但是颜色没有出现在 Interface Builder 中,当我 运行 应用程序时也没有出现。我错过了什么?
我也尝试通过
以编程方式设置它
[self.myBox setFillColor:[NSColor greenColor]];
但是填充颜色还是不会变...
来自NSBox
documentation:
Special Considerations
Functional only when the receiver’s box type (boxType
) is NSBoxCustom
and its border type (borderType
) is NSLineBorder
.
将Box Type设置为Custom,如附件:
我在我的视图中添加了一个 NSBox,我将填充颜色设置为我想要的颜色:
但是颜色没有出现在 Interface Builder 中,当我 运行 应用程序时也没有出现。我错过了什么?
我也尝试通过
以编程方式设置它[self.myBox setFillColor:[NSColor greenColor]];
但是填充颜色还是不会变...
来自NSBox
documentation:
Special Considerations
Functional only when the receiver’s box type (
boxType
) isNSBoxCustom
and its border type (borderType
) isNSLineBorder
.
将Box Type设置为Custom,如附件: