我是整个Appcelerator世界的新手所以我有一个问题:
有人知道appcelerator钛是否提供类似于此截图的滑块功能?
如果没有,那么第一批文档会是什么?
不需要花哨的动画或任何东西,只需要最简单的过渡.

我只需要钛制的基本滑块,其滑动选择器看起来像小圆圈(或者我可以修改或调整到自定义需求的东西).
此外,是的,我将把它用作起点 http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.Slider-object
但该页面没有滑块对象的外观和动作的截图.
我试图为 iOS10 重建一个钛模块(https://github.com/Exygy/Titanium-Ti.Barcode)
重建时,我收到以下错误并且构建失败。
cannot initialize a variable of type 'UIImage *' with an rvalue of type
'CIImage *'
UIImage *image = [blob image];
^ ~~~~~~~~~~~~
Run Code Online (Sandbox Code Playgroud)
以下是生成它的代码段:
id blob = [args valueForKey:@"image"];
ENSURE_TYPE(blob, TiBlob);
UIImage* image = [blob image];
Run Code Online (Sandbox Code Playgroud)
我是 Objective C 的菜鸟。
objective-c uiimage ios titanium-modules appcelerator-titanium
自昨天以来,我一直在尝试解决一个小问题,但是还没有找到解决方案,我已经在Ubuntu 10.04 LTS上安装了Titanium Mobile的所有软件,但是我仍然不知道到底需要在哪里添加模块。所有文档都讨论了如何在MacOS上的/ Library / Application Support / Titanium / modules中安装模块, 而在Ubuntu中却没有。从zip中解压缩后,我将模块添加到〜/ .titanium / modules下,也添加到tiapp.xml中
<modules>
<module version="0.3">com.googlecode.quicktigame2d</module>
</modules>
Run Code Online (Sandbox Code Playgroud)
但我仍然得到错误
Requested module not found : com.googlecode.quicktigame2d
Run Code Online (Sandbox Code Playgroud)
任何帮助表示赞赏。
我从github下载了钛移动sdk的源代码.我在windows 7中安装了python,scons,jdk和android sdk.我在环境变量中为java,android sdk等设置了路径.但在使用scons进行编译时,会出现以下错误.
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Shihab>cd C:\Project\titanium_mobile
C:\Project\titanium_mobile>scons
scons: Reading SConscript files ...
Building MobileSDK version 3.1.0, githash 2d79a72
KeyError: 14:
File "C:\Project\titanium_mobile\SConstruct", line 115:
sdk = AndroidSDK(ARGUMENTS.get("android_sdk", None), 14)
File "C:\Project\titanium_mobile\support\android\androidsdk.py", line 49:
self.set_api_level(api_level)
File "C:\Project\titanium_mobile\support\android\androidsdk.py", line 53:
self.find_platform_dir()
File "C:\Project\titanium_mobile\support\android\androidsdk.py", line 127:
old_style_dir = os.path.join(self.android_sdk, 'platforms', android_api_leve
ls[api_level])
C:\Project\titanium_mobile>
Run Code Online (Sandbox Code Playgroud)
如何解决此错误?
android ×2
appcelerator ×1
ios ×1
javascript ×1
mobile ×1
objective-c ×1
scons ×1
titanium ×1
uiimage ×1