Questions tagged «titanium»

18
如何检查JavaScript中是否存在数组元素?
我正在使用Titanium,我的代码如下所示: var currentData = new Array(); if(currentData[index]!==""||currentData[index]!==null||currentData[index]!=='null') { Ti.API.info("is exists " + currentData[index]); return true; } else { return false; } 我正在将索引传递给数组currentData。我仍然无法使用上述代码检测到不存在的元素。

30
无法在捆绑包中加载NIB
我正在尝试将Janrain Engage作为自定义模块与Appcelerator Titanium集成。我已经创建了一个样本模块,并将JREngage文件夹拖到Jainrain文档中指示的样本模块xcodeproj。 现在,我将构建命令提供给该项目,然后执行./build.py,最后执行titanium run命令。它以空白屏幕在模拟器中启动应用程序,并立即崩溃并引发以下错误。 由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'无法在捆绑包中加载NIB:'NSBundle </ Users / abhilash / Library / Application Support / iPhone Simulator / 4.2 / Applications / CA167346-4091-4E16-B841-955D1D391713 / test.app>(已加载)'名称为'JRProvidersController' 为什么会发生此错误?

3
Appcelerator Titanium Mobile如何工作?
我正在使用Titanium Mobile 1.0构建iPhone应用程序,我发现它可以编译为本地iPhone二进制文件。这是如何运作的?似乎要分析JavaScript代码并直接转换为Objective-C,而没有像280 North's Objective-J和Cappuccino这样的超集语言,这将需要很多繁重的工作。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.