活动监视器不显示进程名称
我有一个应用程序,当我在“活动监视器”中看到该应用程序时,应用程序进程名称没有显示任何内容。仅显示应用程序图标。
我尝试通过获取应用程序的 processInfo 来调试此问题,我得到了正确的应用程序名称。即使尝试使用“top”命令,我也得到了正确的应用程序名称。目标名称和设置也显示相同,只是活动监视器出错了。
是不是我错过了什么,所以活动监视器什么也没有显示。
中号
I have an application, when I see that application in "Activity Monitor" the applications Process Name is displayed nothing. Only the application icon is displayed.
I tried debugging this by getting processInfo of the app, I got the application name correct. Even tried with the "top" command, I got the application name correct. The target name and settings also shows the same, only the activity monitor got wrong.
Is it something I missed so that activity monitor is displaying nothing.
M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了答案,这是info.plist中CFBundleDisplayName的问题。
它已从 info.plist 中删除,因此该应用程序没有显示名称。
因此,无论您在 CFBundleDisplayName 中指定什么名称,它都会在任何地方使用。
谢谢,
莫赫辛
I got the answer, it was the problem with CFBundleDisplayName in the info.plist.
It was deleted from the info.plist so the app was not having a display name.
So whatever name you give in the CFBundleDisplayName it will used everywhere.
Thanks,
Mohsin