I have this code in app.js:

var login = Ti.UI.createWindow({
    url: 'controllers/loginController.js'
});

login.open();

In the Titanium documentation, it says this about the url property:

Windows can be loaded from another JavaScript file by specifying the property url, referencing a file relative to your application Resources folder.

My controllers folder is inside the Resourcesfolder. I doublechecked :)!

I was following the steps here:

http://blog.scottmontgomerie.com/01/mvc-in-appcelerator/

In his example project, he does the same.

However, I always get the following error message:

[ERROR] error loading path: /Users/mobiel/Library/Application Support/iPhone

Simulator/5.0/Applications/3DD8FFEF-4DD7-437E-8AE5-6851750FA0F8/teamTaskManager.app/Resources/controllers/loginController.js, Error Domain=NSCocoaErrorDomain Code=260 "The operation couldn’t be completed. (Cocoa error 260.)" UserInfo=0xa385b60 {NSFilePath=/Users/mobiel/Library/Application Support/iPhone Simulator/5.0/Applications/3DD8FFEF-4DD7-437E-8AE5-6851750FA0F8/teamTaskManager.app/Resources/controllers/loginController.js, NSUnderlyingError=0xa385aa0 "The operation couldn’t be completed. No such file or directory"}

Any idea? Thanks in advance.

link|improve this question

Just an advice, you shouldn't load windows with the url property cause it creates a new js context. Since SDK 1.8 appcelerator been encouring their developers to use commonjs modules. You can see here ( github.com/appcelerator/Documentation-Examples/tree/master/… ) a project example using commonjs. And this week there will be some presentations about titanium best pratices and they will probably give some new code examples using commonjs modules. – NoOne Jan 5 at 16:47
That blew my mind :( – cabaret Jan 5 at 16:48
It might be hard to begin with commonjs modules, but believe me you will get a much cleaner code and easier to maintain. You can also check this: wiki.appcelerator.org/display/guides/… and vimeopro.com/appcelerator/forging-titanium/video/27447911 – NoOne Jan 5 at 16:56
Thanks. I'll definitely check those links :) – cabaret Jan 5 at 16:58
That sadly doesn't work :( – cabaret Jan 6 at 10:22
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

I fixed this by deleting the build folder from my project directory and re-building the project.

:|

link|improve this answer
1  
I don't know if thats the case, but if you deploy your application to device and then you try to debug it in the simulator (or vice-versa) you will need to do a clean or you will get these type of problems (at least for iOS). – NoOne Jan 6 at 12:10
feedback

Your Answer

 
or
required, but never shown

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