2

私はxcodeとiosの開発に不慣れです。私はブラッドラーソンのオンラインコースを使って学んでいます。現在、彼はストーリーボードを使用してインターフェイスを作成していません。彼のデリ​​ゲートファイルでは、rootViewControllerをロードするためのコードを使用しています。

さて、新しい1ページのiOSプロジェクトを作成すると、コントローラーの読み込みを担当しているのはXYZAppDelegateではないようです。

mainstoryboard.storyboardファイルで、XYZViewControllerがそこに表示されていることを知っています。viewControllerのロードを担当しているのはなぜXYZAppDelegateではないのか疑問に思っていますか?

appDelegateでは、didFinishLaunchingWithOptionsメソッドには何もありませんが、プログラムはロードされますか?

ただし、main.mファイルは、XYZAppDelegateがdelegateClassNameであることを示しています。

最後に、私の質問は、その場合、AppDelegateでない場合にXYZViewControllerをロードするのは誰が担当するのかということです。

これらはデフォルトのxcode生成ファイルです

main.m

  return UIApplicationMain(argc, argv, nil, NSStringFromClass([XYZAppDelegate class]));

XYZAppDelegate

#import "XYZAppDelegate.h"

@implementation XYZAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end
4

1 に答える 1

1

答えはInfo.plistファイルにあります。見てみると、2つのキーが呼び出されてMain storyboard file base nameおりMain storyboard file base name (iPad)、その値はそれぞれのデバイスのストーリーボードファイルの名前である必要があります。これらのキーが起動時に存在する場合、OSはストーリーボードファイルを自動的にロードし、ストーリーボードからアプリのウィンドウに最初のViewControllerを挿入します。Info.plistキーの説明については、ここにドキュメントUIMainStoryboardFileがあります(生のキーはと呼ばれます)。

于 2013-01-11T04:30:42.937 に答える