在Interface Builder中,您可以选择缩放按钮图像的方式,为“缩放”下拉菜单选择“轴独立”,“按比例缩小”等。如何在运行时访问或更改NSButton的此属性?
答案 0 :(得分:10)
您应该可以使用the button’s cell:
进行设置NSButton *someButton;
NSButtonCell *someButtonCell = [someButton cell];
[someButtonCell setImageScaling:NSImageScaleAxesIndependently];
有关图像缩放选项的列表,请参阅here。