- 浏览: 3548862 次
- 性别:
- 来自: 大连
博客专栏
-
使用Titanium Mo...
浏览量:38155
-
Cordova 3.x入门...
浏览量:607318
-
常用Java开源Libra...
浏览量:682347
-
搭建 CentOS 6 服...
浏览量:89358
-
Spring Boot 入...
浏览量:401860
-
基于Spring Secu...
浏览量:69699
-
MQTT入门
浏览量:91724
文章分类
最新评论
-
afateg:
阿里云的图是怎么画出来的?用什么工具?
各云服务平台的架构图 -
cbn_1992:
博主,采用jdbctoken也就是数据库形式之后,反复点击获取 ...
Spring Security OAuth2 Provider 之 数据库存储 -
ipodao:
写的很是清楚了,我找到一份中文协议:https://mcxia ...
MQTT入门(6)- 主题Topics -
Cavani_cc:
还行
MQTT入门(6)- 主题Topics -
fexiong:
博主,能否提供完整源码用于学习?邮箱:2199611997@q ...
TensorFlow 之 构建人物识别系统
使用Titanium来开发iPhone应用,不使用Object-C而是使用JavaScript,这看起来是不可思议的事情,那么Titanium又是如何来执行JavaScript文件的呢?我们来跟踪一下自应用启动开始到执行到入口js(app.js)的TItanium代码吧!
要跟踪代码的前提是需要有生成好的代码,所以我们需要新建一个Titanium工程,然后编译生成iPhone代码。编译后在/build/iphone/下就能够找到源代码了。
由于版本的不一样,编译出来的代码有可能也不一样,我使用的版本是1.7.1。而且,代码有可能会很长,在一些地方我会省去没有关系的代码。
1、/build/iphone/main.m
这里从代码UIApplicationMain(argc, argv, nil, @"TiApp")可以看出来我们需要进一步进入到TiApp.mm中查看代码。
TiApp是应用在启动的时候被调用的,所以继续看application:didFinishLaunchingWithOptions方法。
2、/build/iphone/Classes/TiApp.mm
这里可以看出是通过[self boot]来启动的,所以继续看[self boot]。
3、/build/iphone/Classes/TiApp.mm
注意这里的代码[kjsBridge boot:self url:nil preload:nil];
kjsBridge是KrollBridge类的变量,所以继续查看KrollBridge的boot方法。
4、/build/iphone/Classes/KrollBridge.mm
继续查看[context start];。
5、/build/iphone/Classes/KrollContext.mm
继续查看通过@selector(main)指定的方法。
6、/build/iphone/Classes/KrollContext.mm
继续查看[delegate performSelector:@selector(didStartNewContext:) withObject:self]。关于KrollBridge的boot的delegate、是通过以下方法的context.delegate设定的内容:
7、/build/iphone/Classes/KrollBridge.mm
self类型就是KrollBridge类,继续查看KrollBridge的didStartNewContext方法。
8、/build/iphone/Classes/KrollBridge.mm
在这里读入app.js文件。
继续看[self evalFile:[startURL absoluteString] callback:self selector:@selector(booted)] 这段代码。
这里@selector(evalFileOnThread:context:)指定的方法代码如下:
通过TiCheckScriptSyntax对JavaScript的语法进行验证,然后利用TiEvalScript来执行JavaScript代码。
TiEvalScript是在/build/iphone/headers/TiCore/TiBase.h中定义的。
JS_EXPORT是下边这样的,通过共享Library读入的。
9、/build/iphone/headers/TiCore/TiBase.h
关于TiEvalScript的代码在/build/iphone下不存在、查找https://github.com/appcelerator/titanium_mobile 之后,在
titanium_mobile/iphone/SConstruct 中有如下的说明:
http://github.com/appcelerator/tijscore 里有实际的源代码。
10、/TiCore/API/TiBase.cpp
在tijscore的README中,有如下的说明,可见Titanium Mobile对于JavaScript的执行使用了WebKit的KJS。
****传统上,WebKit包含一个网页引擎WebCore和一个脚本引擎JavaScriptCore,它们分别对应的是KDE的KHTML和KJS。
代码很长,大家慢慢消化吧!
要跟踪代码的前提是需要有生成好的代码,所以我们需要新建一个Titanium工程,然后编译生成iPhone代码。编译后在/build/iphone/下就能够找到源代码了。
由于版本的不一样,编译出来的代码有可能也不一样,我使用的版本是1.7.1。而且,代码有可能会很长,在一些地方我会省去没有关系的代码。
1、/build/iphone/main.m
25:int main(int argc, char *argv[]) { 26: NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 27: 28:#ifdef __LOG__ID__ 29: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 30: NSString *documentsDirectory = [paths objectAtIndex:0]; 31: NSString *logPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%s.log",STRING(__LOG__ID__)]]; 32: freopen([logPath cStringUsingEncoding:NSUTF8StringEncoding],"w+",stderr); 33: fprintf(stderr,"[INFO] Application started\n"); 34:#endif 35: 36: int retVal = UIApplicationMain(argc, argv, nil, @"TiApp"); 37: [pool release]; 38: return retVal; 39:}
这里从代码UIApplicationMain(argc, argv, nil, @"TiApp")可以看出来我们需要进一步进入到TiApp.mm中查看代码。
TiApp是应用在启动的时候被调用的,所以继续看application:didFinishLaunchingWithOptions方法。
2、/build/iphone/Classes/TiApp.mm
350:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions_ 351:{ 352: started = [NSDate timeIntervalSinceReferenceDate]; 353: NSSetUncaughtExceptionHandler(&MyUncaughtExceptionHandler); 354: 355: // nibless window 356: window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 357: 358: [self initController]; 359: (省略) 384: if (notification!=nil) 385: { 386: [self generateNotification:notification]; 387: } 388: 389: [self boot]; 390: 391: return YES; 392:}
这里可以看出是通过[self boot]来启动的,所以继续看[self boot]。
3、/build/iphone/Classes/TiApp.mm
281:- (void)boot 282:{ 283: NSLog(@"[INFO] %@/%@ (%s.1293a6d)",TI_APPLICATION_NAME,TI_APPLICATION_VERSION,TI_VERSION_STR); 284: 285: sessionId = [[TiUtils createUUID] retain]; 286: TITANIUM_VERSION = [[NSString stringWithCString:TI_VERSION_STR encoding:NSUTF8StringEncoding] retain]; 287: 288: NSString *filePath = [[NSBundle mainBundle] pathForResource:@"debugger" ofType:@"plist"]; 289: if (filePath != nil) { 290: NSMutableDictionary *params = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath]; 291: NSString *host = [params objectForKey:@"host"]; 292: NSString *port = [params objectForKey:@"port"]; 293: if (host != nil && ![host isEqual:@""] && ![host isEqual:@"__DEBUGGER_HOST__"]) 294: { 295: [self setDebugMode:YES]; 296: TiDebuggerStart(host,[port intValue]); 297: } 298: } 299: 300: kjsBridge = [[KrollBridge alloc] initWithHost:self]; 301: 302: [kjsBridge boot:self url:nil preload:nil]; 303:#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_4_0 304: if ([TiUtils isIOS4OrGreater]) 305: { 306: [[UIApplication sharedApplication] beginReceivingRemoteControlEvents]; 307: } 308:#endif 309:}
注意这里的代码[kjsBridge boot:self url:nil preload:nil];
kjsBridge是KrollBridge类的变量,所以继续查看KrollBridge的boot方法。
4、/build/iphone/Classes/KrollBridge.mm
315:- (void)boot:(id)callback url:(NSURL*)url_ preload:(NSDictionary*)preload_ 316:{ 317: preload = [preload_ retain]; 318: [super boot:callback url:url_ preload:preload_]; 319: context = [[KrollContext alloc] init]; 320: context.delegate = self; 321: [context start]; 322:}
继续查看[context start];。
5、/build/iphone/Classes/KrollContext.mm
747:-(void)start 748:{ 749: if (stopped!=YES) 750: { 751: @throw [NSException exceptionWithName:@"org.test3.kroll" 752: reason:@"already started" 753: userInfo:nil]; 754: } 755: stopped = NO; 756: [NSThread detachNewThreadSelector:@selector(main) toTarget:self withObject:nil]; 757:}
继续查看通过@selector(main)指定的方法。
6、/build/iphone/Classes/KrollContext.mm
942:-(void)main 943:{ 944: NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 945: [[NSThread currentThread] setName:[self threadName]]; 946: pthread_rwlock_rdlock(&KrollGarbageCollectionLock); 947:// context = TiGlobalContextCreateInGroup([TiApp contextGroup],NULL); 948: context = TiGlobalContextCreate(NULL); 949: TiObjectRef globalRef = TiContextGetGlobalObject(context); 950: 951: 952: // TODO: We might want to be smarter than this, and do some KVO on the delegate's 953: // 'debugMode' property or something... and start/stop the debugger as necessary. 954: if ([[self delegate] shouldDebugContext]) { 955: debugger = TiDebuggerCreate(self,globalRef); 956: } (省略) 1042: loopCount = 0; 1043: #define GC_LOOP_COUNT 5 1044: 1045: if (delegate!=nil && [delegate respondsToSelector:@selector(didStartNewContext:)]) 1046: { 1047: [delegate performSelector:@selector(didStartNewContext:) withObject:self]; 1048: } 1049: pthread_rwlock_unlock(&KrollGarbageCollectionLock); 1050: 1051: BOOL exit_after_flush = NO;
继续查看[delegate performSelector:@selector(didStartNewContext:) withObject:self]。关于KrollBridge的boot的delegate、是通过以下方法的context.delegate设定的内容:
7、/build/iphone/Classes/KrollBridge.mm
315:- (void)boot:(id)callback url:(NSURL*)url_ preload:(NSDictionary*)preload_ 316:{ 317: preload = [preload_ retain]; 318: [super boot:callback url:url_ preload:preload_]; 319: context = [[KrollContext alloc] init]; 320: context.delegate = self; 321: [context start]; 322:}
self类型就是KrollBridge类,继续查看KrollBridge的didStartNewContext方法。
8、/build/iphone/Classes/KrollBridge.mm
523:-(void)didStartNewContext:(KrollContext*)kroll 524:{ 525: // create test3 global object 526: NSString *basePath = (url==nil) ? [TiHost resourcePath] : [[[url path] stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"."]; 527: _test3 = [[test3Object alloc] initWithContext:kroll host:host context:self baseURL:[NSURL fileURLWithPath:basePath]]; (省略) 563: else 564: { 565: // now load the app.js file and get started 566: NSURL *startURL = [host startURL]; 567: [self injectPatches]; 568: [self evalFile:[startURL absoluteString] callback:self selector:@selector(booted)]; 569: } 570:}
在这里读入app.js文件。
继续看[self evalFile:[startURL absoluteString] callback:self selector:@selector(booted)] 这段代码。
437:- (void)evalFile:(NSString*)path callback:(id)callback selector:(SEL)selector 438:{ 439: [context invokeOnThread:self method:@selector(evalFileOnThread:context:) withObject:path callback:callback selector:selector]; 440:}
这里@selector(evalFileOnThread:context:)指定的方法代码如下:
346:- (void)evalFileOnThread:(NSString*)path context:(KrollContext*)context_ 347:{ 348: NSError *error = nil; 349: TiValueRef exception = NULL; 350: 351: TiContextRef jsContext = [context_ context]; (省略) 395: const char *urlCString = [[url_ absoluteString] UTF8String]; 396: 397: TiStringRef jsCode = TiStringCreateWithCFString((CFStringRef) jcode); 398: TiStringRef jsURL = TiStringCreateWithUTF8CString(urlCString); 399: 400: // validate script 401: // TODO: we do not need to do this in production app 402: if (!TiCheckScriptSyntax(jsContext,jsCode,jsURL,1,&exception)) 403: { 404: id excm = [KrollObject toID:context value:exception]; 405: NSLog(@"[ERROR] Syntax Error = %@",[TiUtils exceptionMessage:excm]); 406: [self scriptError:[TiUtils exceptionMessage:excm]]; 407: } 408: 409: // only continue if we don't have any exceptions from above 410: if (exception == NULL) 411: { 412: if ([[self host] debugMode]) { 413: TiDebuggerBeginScript(context_,urlCString); 414: } 415: 416: TiEvalScript(jsContext, jsCode, NULL, jsURL, 1, &exception); 417: 418: if ([[self host] debugMode]) { 419: TiDebuggerEndScript(context_); 420: } 421: 422: if (exception!=NULL) 423: { 424: id excm = [KrollObject toID:context value:exception]; 425: NSLog(@"[ERROR] Script Error = %@.",[TiUtils exceptionMessage:excm]); 426: [self scriptError:[TiUtils exceptionMessage:excm]]; 427: } 428: else { 429: evaluationError = NO; 430: }
通过TiCheckScriptSyntax对JavaScript的语法进行验证,然后利用TiEvalScript来执行JavaScript代码。
TiEvalScript是在/build/iphone/headers/TiCore/TiBase.h中定义的。
105:/* Script Evaluation */ 106: 107:/*! 108:@function TiEvalScript 109:@abstract Evaluates a string of Ti. 110:@param ctx The execution context to use. 111:@param script A TiString containing the script to evaluate. 112:@param thisObject The object to use as "this," or NULL to use the global object as "this." 113:@param sourceURL A TiString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to include source file information in exceptions. 114:@param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. 115:@param exception A pointer to a TiValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. 116:@result The TiValue that results from evaluating script, or NULL if an exception is thrown. 117:*/ 118:JS_EXPORT TiValueRef TiEvalScript(TiContextRef ctx, TiStringRef script, TiObjectRef thisObject, TiStringRef sourceURL, int startingLineNumber, TiValueRef* exception);
JS_EXPORT是下边这样的,通过共享Library读入的。
9、/build/iphone/headers/TiCore/TiBase.h
72:/* Ti symbol exports */ 73: 74:#undef JS_EXPORT 75:#if defined(BUILDING_WX__) 76: #define JS_EXPORT 77:#elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__) 78: #define JS_EXPORT __attribute__((visibility("default"))) 79:#elif defined(_WIN32_WCE) 80: #if defined(JS_BUILDING_JS) 81: #define JS_EXPORT __declspec(dllexport) 82: #elif defined(JS_IMPORT_JS) 83: #define JS_EXPORT __declspec(dllimport) 84: #else 85: #define JS_EXPORT 86: #endif 87:#elif defined(WIN32) || defined(_WIN32) 88: /* 89: * TODO: Export symbols with JS_EXPORT when using MSVC. 90: * See http://bugs.webkit.org/show_bug.cgi?id=16227 91: */ 92: #if defined(BUILDING_TiCore) || defined(BUILDING_WTF) 93: #define JS_EXPORT __declspec(dllexport) 94: #else 95: #define JS_EXPORT __declspec(dllimport) 96: #endif 97:#else 98: #define JS_EXPORT 99:#endif
关于TiEvalScript的代码在/build/iphone下不存在、查找https://github.com/appcelerator/titanium_mobile 之后,在
titanium_mobile/iphone/SConstruct 中有如下的说明:
引用
10:# NOTE: this is simply a pre-built version of the source at http://github.com/appcelerator/tijscore
11:# since this is so freaking complicated to setup and build in an stable environment, and since
12:# it takes like an hour to build the library, we have, as a convenience, pre-built it from the
13:# exact same source and are providing the pre-compiled versions for i386/arm
11:# since this is so freaking complicated to setup and build in an stable environment, and since
12:# it takes like an hour to build the library, we have, as a convenience, pre-built it from the
13:# exact same source and are providing the pre-compiled versions for i386/arm
http://github.com/appcelerator/tijscore 里有实际的源代码。
10、/TiCore/API/TiBase.cpp
52:TiValueRef TiEvalScript(TiContextRef ctx, TiStringRef script, TiObjectRef thisObject, TiStringRef sourceURL, int startingLineNumber, TiValueRef* exception) 53:{ 54: TiExcState* exec = toJS(ctx); 55: APIEntryShim entryShim(exec); 56: 57: TiObject* jsThisObject = toJS(thisObject); 58: 59: // evaluate sets "this" to the global object if it is NULL 60: TiGlobalObject* globalObject = exec->dynamicGlobalObject(); 61: SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber); 62: Completion completion = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), source, jsThisObject); 63: 64: if (completion.complType() == Throw) { 65: if (exception) 66: *exception = toRef(exec, completion.value()); 67: return 0; 68: } 69: 70: if (completion.value()) 71: return toRef(exec, completion.value()); 72: 73: // happens, for example, when the only statement is an empty (';') statement 74: return toRef(exec, jsUndefined()); 75:}
在tijscore的README中,有如下的说明,可见Titanium Mobile对于JavaScript的执行使用了WebKit的KJS。
****传统上,WebKit包含一个网页引擎WebCore和一个脚本引擎JavaScriptCore,它们分别对应的是KDE的KHTML和KJS。
引用
This is a Titanium Mobile fork of WebKit KJS. All changes are made available
under the Apache Public License (version 2).
under the Apache Public License (version 2).
代码很长,大家慢慢消化吧!
发表评论
-
VisualUI for Titanium Studio
2014-01-13 09:02 1546VisualUI for Titanium Studio is ... -
Google Auth (OAuth 2.0) for Titanium
2013-03-19 11:49 2055Google OAuth 2.0 for Titanium i ... -
Appcelerator Titanium: Up and Running
2013-03-19 08:40 46Appcelerator Titanium: Up and R ... -
Titanium SDK/Studio 3.0.0 Beta版发布
2012-11-07 09:36 463Titanium SDK/Studio 3.0.0 Beta版 ... -
Titanium SDK 3.0.0 Developer Preview
2012-10-29 16:15 303Titanium SDK 3.0.0 Developer Pr ... -
Appcelerator Partners With Largest Chinese Software Developer Network
2012-10-29 12:01 225(Marketwire - Oct 19, 2012) -Ap ... -
Titanium 3.0 预定10月份发布
2012-09-27 09:12 733Appcelerator CEO Jeff Haynie和 C ... -
Titanium SDK 2.1.3 RC is released – Support for iOS 6
2012-09-21 13:51 241---以下官方原文--- We understand the ... -
国内Ti开发者Winson的CBMVC框架
2012-08-06 15:55 1206目前关注Titanium的开发 ... -
Titanium的MVC框架"Alloy"的介绍
2012-07-18 14:37 4262Alloy(合金)是Appcelerator公司为Titani ... -
TCAD免费考试延长至7月末
2012-07-17 16:09 327Appcelerator延长这次TCAD免费考试的时间到7月末 ... -
TCAD认证考试
2012-07-13 11:31 2572Appcelerator从7/7开始免费开放TCAD(Tita ... -
【转】Appcelerator Cloud Push Notification in iPhone
2012-07-12 08:49 2765Push Notification in iOS Using ... -
【转】Appcelerator Cloud Push Notification in Android
2012-07-12 08:38 2487What is Push Notification? Push ... -
Appcelerator Titanium: Patterns and Best Practices
2012-07-10 10:58 373Appcelerator Titanium: Patterns ... -
Appceleator Cloud Services使用指南(3) - API Reference V1 (chm版本)
2012-05-28 15:22 1869Appceleator Cloud Services API ... -
Appceleator Cloud Services使用指南(2) - 创建第一个应用
2012-05-24 21:57 1784一步一步的创建一个最简单的,使用了ACS服务的应用。 1、新 ... -
Appceleator Cloud Services使用指南(1) - ACS介绍
2012-05-24 10:19 3267Appceleator Cloud Services( ... -
Titanium Mobile基础教程视频
2012-05-23 10:38 639dotinstall.com提供的一套在线Titanium M ... -
Jeff Haynie在GMIC2012表示应用开发者应注意本土化问题
2012-05-22 16:56 3355月10日-11日,2012全球移 ...
相关推荐
在iOS开发中,Titanium是一个流行的跨平台框架,它允许开发者使用JavaScript编写代码,同时能够构建原生的iOS和Android应用程序。"Titanium中支持iOS设备的拖拽"这一主题聚焦于如何在Titanium框架下实现iOS应用的...
Titanium是一个开源的移动开发框架,它允许开发者使用JavaScript语言来构建原生的iOS、Android以及Windows应用程序。这个框架的核心理念是提供一个跨平台的解决方案,让开发者可以用一种语言编写代码,然后在多个...
该工具允许开发者使用 JavaScript 编写应用程序,并通过一套统一的 API 接口访问原生移动设备功能,如 GPS 定位、摄像头、通讯录等,同时能够编译为 iOS 和 Android 平台的原生应用程序。 #### 二、Titanium Module...
Titanium SDK允许开发者用JavaScript编写应用,然后编译成可以在iOS、Android和Web平台上运行的原生应用。它提供了一个丰富的API集,包括对多媒体、网络、设备功能等的支持。 Canvas是HTML5的一个组成部分,提供了...
在移动应用开发领域,Titanium 是一个流行的选择,它允许开发者使用 JavaScript 来构建原生的 iOS 和 Android 应用。Titanium 的核心理念是通过跨平台的 JavaScript API 提供与原生功能的无缝对接,而插件开发则是这...
Titanium Mobile API是用于开发跨平台移动应用的框架,它基于JavaScript,允许开发者用一种语言创建iOS和Android应用。这个框架提供了丰富的API,使得开发者能够访问设备的各种功能,如GPS、摄像头、网络通信等。本...
使用 Titanium 3.2 + 为 iOS 扩展 TiUIWebView 模块此模块不支持。用法参见example/app.js 。特征更改滚动速度(相同的 Ti.UI.TableView / Ti.UI.ScrollView) 移除滚动弹跳阴影 (iOS 6) 移除滚动延迟WebView 和 ...
首先,Titanium是一个开源的JavaScript框架,由Appcelerator公司开发,它允许开发者使用JavaScript编写原生的移动应用,同时支持iOS、Android以及Windows Phone等平台。Titanium的主要优点是提高了开发效率,因为它...
`node-titanium-sdk`是Appcelerator Titanium SDK的一部分,允许开发者利用JavaScript编写代码,然后编译成iOS、Android以及Windows平台的应用程序。这种方式极大地提高了开发效率,因为开发者只需要掌握一种语言...
Titanium是一个开源的JavaScript平台,允许开发者使用JavaScript、HTML和CSS来构建原生的iOS、Android和Windows应用。这份翻译版的手册覆盖了Alloy框架的多个核心概念,为开发者提供了一个全面的参考。 1. **Alloy...
3. iOS SDK集成:虽然使用JavaScript编写,但Appcelerator Titanium能够编译为原生的iOS应用程序,充分利用iOS设备的硬件特性。这意味着开发者可以创建与原生应用无异的用户体验。 三、应用开发流程 1. 环境搭建:...
在Appcelerator Titanium中使用iOS 12+ CarPlay框架。 要求 Titanium SDK 7.3.0以上 iOS 12以上 Xcode 10以上 特征 从您的CarPlay实例接收事件 当前特定于CarPlay的用户界面 使用地图模板从CarPlay开始旅程 ...
Titanium 是一个开源的移动应用开发框架,它允许开发者使用 JavaScript 来构建原生的 iOS 和 Android 应用。这个“Titanium 资料”压缩包包含了几个关键的学习资源,帮助开发者深入理解和掌握 Titanium Studio 开发...
Titanium 是一个强大的开源JavaScript框架,专为开发原生移动应用而设计。它允许开发者使用JavaScript编写代码,同时能够利用iOS、Android等平台的原生功能。在涉及到“titanium 打开本地网络”的话题时,我们主要...
Titanium Mobile是一种强大的跨平台开发工具,它允许开发者仅需掌握一种语言——JavaScript,即可同时为iOS和Android平台创建应用程序。这种技术极大地简化了开发流程,使得开发者能够在不同平台上共享大量代码,...
Appcelerator Titanium是一款开源的移动应用开发平台,它允许开发者使用JavaScript、TypeScript或者CoffeeScript等语言来构建原生的iOS、Android以及Windows应用。通过Titanium,开发者可以利用JavaScript的便利性,...
在移动应用开发领域,Tiitanium 是一个强大的框架,它允许开发者使用 JavaScript 来构建原生的 iOS 和 Android 应用。这篇博客“使用Titanium来开发“Path”的一些创新UI布局 - 左右菜单”可能探讨了如何利用 ...