NSComboBox垂直对齐

时间:2013-07-03 14:44:48

标签: objective-c cocoa vertical-alignment nscombobox

我有NSComboBox显示未垂直对齐的文字。 有没有一种方法可以在NSComboBox内垂直对齐文字?

enter image description here

正如您所看到的,它非常奇怪,并且在字体大小的基础上不会改变。我搜索了NSComboBox Class Reference,但唯一可用的资源是弹出显示的项目(例如intercellSpacingsetItemHeight:)。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

尝试:

NSComboBox* cbx = ZGKeyComboBox.new;
// NSViewMaxYMargin means: The top margin between the receiver and its superview is flexible.
cbx.autoresizingMask = NSViewMaxYMargin;
cbx.itemHeight = cbx.itemHeight + 3; // addSubview will center vertically
NSRect r = NSMakeRect(x, y, width, cbx.itemHeight + 5);
cbx.frame = r;
...
[parent addSubview: cbx];