English 中文(简体)
Sencha 触摸微载重器在 iOS 不工作
原标题:sencha touch microloader not working in iOS

我创造了一个能触摸到 2/phonegap 应用程序, 它对机器人和机器人都很好, 并且需要把它放进iOS。

我成功这样做,然后做了一个小的代码修改(将一张卡片动画从左向右修改为右),应用程序停止了装入。

索引. html 出现, 但它就像微载荷没有被调用。 ST javascript 没有一个被执行 。

我尝试在 XCode 中创建一个新的 iPhone 应用程序, 我确保我找到Mac 电话卡文件, 我检查过微载器和应用程序json 中的所有文件都存在。 除了引用Mac 电话卡文件而不是Android文件之外, 整个目录结构被逐字复制, 但我不能让它运行, XCode没有给我任何错误信息 。

当然,我试图把代码改回来,但是这没有起到任何作用。

这里是我的索引.html。你可以看到它非常赤裸裸的骨头:

<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>MyApp</title>
    <script type="text/javascript" src="cordova-1.7.0.js"></script> 
    <script src="sencha-touch-all-debug.js" type="text/javascript"></script>        
    <script id="microloader" type="text/javascript" src="./microloader/development.js"></script>
</head>
    <body  style="background: url(splash.png) no-repeat;
  background-size: 100%;" >

    </body>
</html>

有什么想法吗?

最佳回答

虽然我尝试了创建一个新的iPhone应用程序,但我没有尝试删除我的网络应用程序,并复制了所有内容。这奏效了,但我还是不知道为什么。

问题回答

或许你应该把电线片和Sencha脚本 包含在 app.json 中。 目前我知道建议只把微载荷脚本 包含在索引. html 中 。

似乎微载荷器被窃听, 以2. 0.0- 贝塔3计。

当它试图应用 diffs 来应用.js 文件时, 它会为不同的工程产生不同的语法错误, 这也是为什么第一次运行成功的原因, 而后来的则不成功的原因, 不论代码的更改如何 。





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签