nib2objc:找不到命令
我一直在尝试将 NIB 文件转换为 Objective C 代码。我在 GitHub 上找到了 NIB2OBJC 项目: https://github.com/akosma/nib2objc 但是当我输入时命令行:
nib2objc tab.xib > tab.m
我收到以下错误: -bash:nib2objc:找不到命令
你能告诉我我错过了什么吗?
谢谢
I've been trying to convert NIB files to Objective C code. I found the project NIB2OBJC on GitHub: https://github.com/akosma/nib2objc but when I type the command line:
nib2objc tab.xib > tab.m
I got the following error:
-bash: nib2objc: command not found
Could you tell me what am I missing?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您位于 nib2objc 所在的文件夹中,则必须运行
./nib2objc
。否则,如果它位于/bin/
、/usr/bin/
或$PATH
中的任何其他文件夹中,则确保它具有执行权限:祝你好运!
If you're in the folder where nib2objc is located, then you've to run
./nib2objc
. Otherwise, if it's located in/bin/
,/usr/bin/
or any other folder in$PATH
, then make sure that it has execution permissions:Good luck!