.xib を使用して UIViewController をインスタンス化する際に問題が発生しています。
私のコードは次のようになります: (実際には、ここを見てください: https://github.com/mrtnbroder/titanium-module-test )
- (void)open:(id)args
{
ENSURE_UI_THREAD(open, args);
CustomViewController *viewController = [[CustomViewController alloc] initWithNibName:@"CustomViewController" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
[[TiApp app] showModalController:navigationController animated:YES];
}
私の .xib ファイルの名前は CustomViewController.xib です
次のようになります。
ただし、ビルドすると、アプリは次のようになります。
なぜ?どうしたの?