如何将现有的iOS原生应用程序转换为iOS钛模块

发布于 2024-12-14 05:28:36 字数 264 浏览 2 评论 0原文

我已关注 http://wiki.appcelerator.org/display/guides/ iOS+模块+开发+指南并创建了一个ios模块并将其集成到钛应用程序中。现在请帮助我如何将现有的 iOS4 (iPhone) 应用程序转换为钛的 iOS 模块。

我的问题可能很愚蠢,请帮助我:)

I have followed http://wiki.appcelerator.org/display/guides/iOS+Module+Development+Guide and created a ios module and integrated it to titanium application. Now kindly help me how to convert an existing iOS4 (iPhone) application into iOS module for titanium.

My question might be very sily, kindly help me :)

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

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

发布评论

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

评论(2

|煩躁 2024-12-21 05:28:36

Titanium mobile 使用其原生 JavaScript 来开发模块。在编译时,它将源代码翻译为本机代码。
根据您的情况,您在 iOS 4 中有一个本机应用程序,因此为了将其转换为 Titan,您必须使用其本机 javascript 在 Titan 中从头开始创建应用程序。
我认为没有任何技巧或应用程序可以将本机 iOS 应用程序转换为钛。

Titanium mobile uses its native javascript to develop modules. At compile time it translates the source code into native code.
And as per your situation you have a native application in iOS 4, so in order to convert it to titanium you got to create the application from scratch in titanium using its native javascript.
I don't think there is any trick or application that converts a native iOS application to titanium.

独享拥抱 2024-12-21 05:28:36

一种建议是创建一个空模块并将现有代码放入其中。棘手的部分是摆脱您自己的 Appdelegate 并将 Modules 委托附加到您的源。

您可以显示任何视图控制器,如下所示

 [[TiApp app] showModalController:myViewController animated:YES];

One suggestion would be by creating an empty module and putting your existing code inside it. The tricky part is getting rid of your own Appdelegate and attching the Modules delegate to your source.

You can show any of your view controllers as follows

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