タブバーアプリケーションを作成していますが、Interface Builderを使用して、Main.xibにないタブバーコントローラーを作成したいと思います。私のアプリにはMain.Xibがないからです。したがって、ViewController.xibで実行するか、プログラムでコントローラー/appdelegateで実行する必要があります。良いチュートリアルや例は見つかりませんでした。
私のアプリでは
AppDelegate.h
AppDelegate.m
ViewController.h
ViewController.m
ViewController.xib
私のアプリケーションはViewController.xibのビューで始まり、タブバーではなく、常にビューの下部にとどまるタブバーコントローラーを追加したいことを知っています。どうやってやるの?
appdelagete.h
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
私はアップルデベロッパのドキュメントを見てプログラムでそれをやろうとしましたが、それを理解することができませんでした。
サンプルコードを事前に感謝します