nib2objc:找不到命令

发布于 2024-10-18 08:05:51 字数 286 浏览 1 评论 0原文

我一直在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美的太阳 2024-10-25 08:05:51

如果您位于 nib2objc 所在的文件夹中,则必须运行 ./nib2objc。否则,如果它位于 /bin//usr/bin/$PATH 中的任何其他文件夹中,则确保它具有执行权限:

$ which nib2objc
/foo/bar/nib2objc
$ stat /foo/bar/nib2objc
$ chmod a+x /foo/bar/nib2objc

祝你好运!

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:

$ which nib2objc
/foo/bar/nib2objc
$ stat /foo/bar/nib2objc
$ chmod a+x /foo/bar/nib2objc

Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文