如何将混合应用程序集成到ios本机应用程序中?

时间:2013-10-17 06:50:30

标签: iphone ios sup hybrid-mobile-app

我有一个要求,比如将混合应用程序集成到ios应用程序中?有可能吗?目前iOS应用程序访问SUP服务器作为middileware并下载hibrid应用程序。现在我想改变外观和感觉就像原生一样。如何规范(整合)这两个代码。 提前谢谢..

1 个答案:

答案 0 :(得分:1)

我找到了解决这个问题的方法。请点击以下链接:

http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01853.0222/doc/html/vhu1333388244905.html

http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01853.0222/doc/html/vhu1333388244905.html

作为开发者,我们需要处理两件事。在这些步骤中出错的机会:

1)添加混合应用程序文件夹:添加混合应用程序文件夹时应选择第二个选项。While adding the hybrid app folder should select second option.

2)混合应用程序的资源路径:

假设在iOS中提供这样的资源路径。

NSString * path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@“HybridAppFolderName”];

但这里只是给:NSString * path = @“HybridAppFolderName”;

我希望这会对你有所帮助..