Xcodeを入れる。
Titanium Studioを入れる。(Titanium SDKがインストールされる)
最小限サンプル。komagata/titanium-foo
// Resources/app.js
var window = Ti.UI.createWindow({
backgroundColor:'#ffffff',
navBarHidden:true,
exitOnClose:true
});
var label = Ti.UI.createLabel({
color:'#000000',
text:'foo',
height:'auto',
width:'auto'
});
window.add(label);
window.open()
プロジェクトディレクトリに入って下記。(.などの相対パスだと駄目なのでpwd (via @yagi_))
% ~/Library/Application\ Support/Titanium/mobilesdk/osx/2.0.2.GA/iphone/builder.py run "`pwd`"
できた。
何かおかしい場合は下記で大抵直るらしい。
% rm -rf build