Hi I am building a iOS app using Appcelerator,

I have a file app.js and a file webService.js

the file webService.js contains a function x

now from my app.js file i want to call function x that is present in the webService.js file.

I searched a lot but i only found that using html..i am not using any html in it, it is just pure javascript.

link|improve this question

78% accept rate
Don't all Appcelerator apps start with an index page? You could load webService.js there. – Eugen Rieck Jan 2 at 10:29
2  
Include the file using Ti.include('webService.js); in app.js and call the function. – Muhammad Zeeshan Jan 2 at 10:30
feedback

3 Answers

up vote 4 down vote accepted

Have you tried using

Ti.include('path/file.js');
link|improve this answer
feedback

Include the file in app.js using :

Ti.include('path/webService.js'); 

and call the function.

link|improve this answer
feedback

Well you can use include, but i advise you to take a look at commonjs. Commonjs is the future on architecturing appcelerator's applications.

You should check this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.