私はTitaniumMobileフレームワークを使用したモバイル開発を学んでいます。
javascriptスタイルシートの適用に関連する問題に直面しています。jssファイルにスタイルを適用するjsファイルと同じ名前を付けると、正常に機能します。しかし、別の名前を付けると、機能しません。誰かが私に解決策を教えてもらえますか?以下は私のコードサンプルです。
// app.js
var win = Titanium.UI.createWindow({ backgroundColor : '#fff' });
win.add( Ti.UI.createButton({ title : 'Button A' }) );
win.open();
// app.jss, works fine
button { backgroundImage: 'grdadient_img.png'; }
// button_style.jss, don't work
button { backgroundImage: 'grdadient_img.png'; }