2016-03-31 83 views
1

我正在處理應用程序,並且我正在使用NSPopupButton具有下拉列表。如何在NSPopupButton的項目中顯示圖像和文本

我想知道當我展開列表時,如何在每個項目中顯示圖像+文本。我看到在接口中有addItemWithTitle:但它需要NSString。 我怎麼能做到這一點? 謝謝

回答

1

NSPopUpButton中的項目是NSMenuItems,它允許您爲文本添加圖像。

1

添加圖像,並設置位置上的每個菜單項,如下面所示的圖像:

Check the selected item, the position and the inspector

1
[popUpButton addItemWithTitle:@"item title here"]; 
[[popUpButton lastItem] setImage:[NSImage imageNamed:@"noname01"]]; 

你不需要考慮自定義視圖。

相關問題