tmux上からTitaniumプロジェクトをビルドしてiPhoneシミュレータで確認しようとしても起動したiPhoneシミュレータの画面が真っ黒の画面になり以下のようにインストール出来ない.
$ti build -p ios
…
[INFO] Focusing the iOS Simulator
[ERROR] Project failed to build after 1m 57s 931ms
#解決方法
以下のようにreattach-to-user-namespaceをインストールしてから,.tmux.confを設定することによってtmux上からビルドできるようになる.
$ brew install reattach-to-user-namespace
$ echo 'set-option -g default-command "reattach-to-user-namespace -l zsh"' >> .tmux.conf
$ti build -p ios