使用现有的Python & 编写的soap 客户端适用于 iPhone 应用程序的肥皂水

发布于 2024-11-27 03:23:22 字数 222 浏览 2 评论 0 原文

我已经用 python 编写了 JIRA 客户端,我想知道是否有任何方法可以将我用 python 编写的现有库用于 iPhone jira 客户端。

我读了一些关于 pyObjc 的内容,我认为它是两种语言之间的桥梁。

我可以将 python 库编译成 ObjC 库吗?

如果有人能指出我的方向,我将非常感激。

顺便说一句,我是两种语言的新手。

谢谢

I have written a client for JIRA in python and I was wondering if there is any way to use my existing libraries written in python for an iPhone jira client.

I read a little bit about pyObjc which I think is a bridge between the two language.

can I compile my python libraries into ObjC libraries?

If someone can point me in a direction, would appreciate it very much.

btw I am a newbie in both languages.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

江城子 2024-12-04 03:23:22

您可能想要做的是将 Python 解释器嵌入到本机 iPhone 应用程序中,然后发出命令以运行您的 Python 脚本,而这些脚本又调用您的 Python 库。

启动时

  • 在应用程序中创建Python解释器

  • 使其加载Python库

  • 设置Python环境(全局变量等)

然后

  • UI回调向Python解释器发出命令以执行Python函数/脚本

据我所知,您可以在XCode中使用C/C++设施到嵌入解释器 - 我不确定是否需要 pyobjc 。

您无法将现有的 Python 源代码转换为 ObjC 代码。

以下是更多信息

What you probably want to do is to embed a Python interpreter in a native iPhone app and then issue commands for it to run your Python scripts which in turn call your Python libraries.

On boot

  • Create Python interpreter in the app

  • Make it to load your Python libaries

  • Set-up Python environemnt (global vars and such)

And then

  • UI callbacks issue commands to Python interpreter to execute Python functions/scripts

As far as I know you can use C/C++ facilities in XCode to embed the interpreter - I am not sure whether pyobjc is needed at all.

You cannot translate your existing Python source code to ObjC code.

Here is some more info

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