0

我想用一个属性“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 回答