SetItemIcon()
用于设置菜单项图标的Carbon API函数显然已停止在macOS 10.13 High Sierra上运行。我的意思是它现在显示一堆扭曲的像素而不是实际的图标。从10.0到10.12,它工作正常。函数在Menus.h中定义
/*
* SetItemIcon()
*
* Mac OS X threading:
* Not thread safe
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.0 and later
* Non-Carbon CFM: in InterfaceLib 7.1 and later
*/
extern void
SetItemIcon(
MenuRef theMenu,
MenuItemIndex item,
short iconIndex) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER;
并在以下代码中使用:
SetItemIcon((MenuHandle)hMenu, uItem+1, hbmp-256);
使用XCode版本3.2.5构建。
有没有办法解决或解决此问题?
P.S。图标以一些古老的奇怪HEX文本格式存储在.r资源文件中:
resource 'ICON' (300) {
$"0000 0000 0000 0000 0000 0000 0000 0000"
$"0000 0000 0000 0000 0000 0000 0000 0000"
$"0000 0000 0000 0000 0000 0000 0000 0F00"
$"0000 FE00 000F FC00 00FF F800 03FF FF80"
$"00FF F800 000F FC00 0000 FE00 0000 0F"
};
答案 0 :(得分:0)
使用SetItemIcon()
的另一种替代方法是使用SetMenuItemIconHandle()
,它在10.13上仍能正常工作。
SetMenuItemIconHandle((MenuHandle)hMenu, uItem+1, kMenuIconResourceType, (Handle) CFSTR("myicon.icns"));
图标需要从HEX文本格式转换为.icns文件并添加到项目和应用程序包中。