titanium

Ti.UI.WebView on Android: webpage is not being displayed

限于喜欢 提交于 2021-01-28 20:12:38
问题 I am using a WebView in my app. This WebView must display an external webpage. It works fine on iOS, but on Android I get a white screen. In the console I see this warning: W/cr.BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid I added debug messages inside the load event of the WebView. When I call the getHtml method there I see that the html is being retrieved. I have no idea why it is not being displayed? I find some similar issues on stackoverflow

ios7 error when submitting an update. this bundle does not support one or more devices

情到浓时终转凉″ 提交于 2021-01-27 01:29:22
问题 application context: ios7, xcode 5, written with titanium appcelerator (sdk 3.1.3GA), previous version compatibility was as the image says (directly from itunes connect) the complete error is this bundle does not support one or more devices. supported by the revious app version. your app update must continue to support all devices previously supported. your declare supported device in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https:/

RIMOWA行李箱4大系列、全尺寸整理给你

半城伤御伤魂 提交于 2020-10-31 19:01:27
  想购买RIMOWA却迟迟下不了手吗?看完这篇系列、尺寸整理,就知道最适合自己的行李箱是哪一个! 2016年,德国行李箱霸主RIMOWA正式加入LVMH集团,便开始为RIMOWA进行全方面的改造计划,从标志性Logo改变、重新定位品牌风格、增加联名系列机会,以及为原有的行李箱重新命名,并推出季节限定色系。不知道哪一个系列适合自己,带你简单搞懂RIMOWA 4大系列行李箱区别: 1、Original系列 由原本Topas系列演变而来的Original系列,是以RIMOWA著称的铝镁合金材质打造,配置万向轮Multiwheel及TSA海关锁,是品牌最热卖,同时也是尺寸最齐全的系列。      RIMOWA Original Cabin S in Titanium尺寸:50 x 40 x 20cm (小型) 专为廉价航空打造,可以满足各家航空公司规定 RIMOWA Original Cabin in Marine尺寸:55 x 40 x 23cm(中型)    一般登机箱大小 RIMOWA Original Cabin Plus in Black尺寸:57 x 44 x 25.5cm(大型) RIMOWA Original Check-In M in Silver尺寸:69 x 44 x 27.5cm(3-5日旅行) RIMOWA Original Check-In L in

Unable to find any Xcode installations that supports iOS Simulator 13.2.2

二次信任 提交于 2020-07-10 03:14:16
问题 I am getting this error when using titanium and trying to run my app on iOS simulator . I could do it before. My SDK version is 7.5.0.GA. How can I make it fine? I use the command below to build my app: ti build -p ios -T simulator 回答1: 7.5.0.GA is from 2018. I strongly recommend updating the SDK to the latest (currently 9.0.3.GA) to make your app work again with the latest simulators and be able to push it to the app store. Check: https://wiki.appcelerator.org/display/guides2/Titanium

Unable to find any Xcode installations that supports iOS Simulator 13.2.2

被刻印的时光 ゝ 提交于 2020-07-10 03:13:57
问题 I am getting this error when using titanium and trying to run my app on iOS simulator . I could do it before. My SDK version is 7.5.0.GA. How can I make it fine? I use the command below to build my app: ti build -p ios -T simulator 回答1: 7.5.0.GA is from 2018. I strongly recommend updating the SDK to the latest (currently 9.0.3.GA) to make your app work again with the latest simulators and be able to push it to the app store. Check: https://wiki.appcelerator.org/display/guides2/Titanium

推荐一个比FiddlerCore好用的HTTP(S)代理服务器

泄露秘密 提交于 2020-04-28 21:27:30
原文: 推荐一个比FiddlerCore好用的HTTP(S)代理服务器 为什么不用FiddlerCore? 说到FiddlerCore大家可能会比较陌生,那么它哥Fiddler就比较熟悉了;抓包、模拟低带宽、修改请求我平时比较常用。Fiddler的本质就是一个HTTP代理服务器。 FiddlerCore是Fiddler去除了UI的核心组件,可以用于二次开发。如下图所示: Fiddler主要有以下几点感觉很别扭: API命名不规范、属性/字段混用。 .NET中普遍采用Pascal命名规范,而Fiddler的命名就像个大杂烩。例如:public成员用字段,CONFIG类名,oSession参数名 不支持异步。所有的回调都是同步。 框架设计不合理,不支持多实例,大量使用了静态方法。所有方法都堆到了Session类中不易于扩展,起码Request/Response也得分开啊。 单就以上几点我感觉这框架完全没有设计可言,如果没有别的选择FiddlerCore我或许就将就用了,好在Github上已经有人先一步重新实现了FiddlerCore Titanium-Web-Proxy介绍 一个跨平台、轻量级、低内存、高性能的HTTP(S)代理服务器,开发语言为C# https://github.com/justcoding121/Titanium-Web-Proxy 功能特性 支持HTTP(S

在Titanium下,iPhone操作sqlite,时间戳毫秒取值不正确

*爱你&永不变心* 提交于 2020-04-09 12:11:16
##问题描述: 在Titanium下存如sqlite毫秒级别的时间戳, 再获取的时候得到的数值不正确,有时候还可能是负数..在Android下没有此问题. ##解决办法: 先在数据库中更改原先的时间戳的字段为VARCHAR类型的,以后存储字符串的时间戳,如: '1360229569444' 由于字符串是无法比较的,在需要根据此字段作为where条件时,使用CAST(expr AS target_type)强制转换为NUMERIC类型,然后进行比较.如: select * from mytable where CAST(start_time AS NUMERIC) > 1360229569444 ###参考资料: [SQLite学习手册:三.转换表达式] ( http://www.2cto.com/database/201202/120267.html ) [Date Formatting And Format Validation: 一个js日期操作库] ( http://www.javascripttoolbox.com/lib/date/documentation.php ) 来源: oschina 链接: https://my.oschina.net/u/865845/blog/112805