0

1つのプロパティ「currentDeviceOrientation」を持つ別のクラス「例:デバイスマネージャー」を保持したい。これから、次の状態を達成する方法。

  1. 初めてアプリを起動するときはいつでも、「currentDeviceOrientation」プロパティを更新したいと考えています。
  2. アプリがバックグラウンドからフォアグラウンドに移動するたびに、「現在の DeviceOrientation」プロパティを更新したいと考えています。
  3. 「currentDeviceOrientation」の値によると、私の rootViewController ビューは (void)loadView メソッドからロードされるはずです。

私の問題を解決する良い方法を教えてください。

4

1 に答える 1

0

You can use the already built-in methods in AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {   

}

- (void)applicationWillEnterForeground:(UIApplication *)application {
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
}
于 2013-10-21T06:21:00.483 に答える