我有@property NSDate
实例,它在方法中有时间- (void)applicationWillResignActive:(UIApplication *)application
。
我已经在 AppDelegate Implementation 块中的代码ViewController
中SecondController
连接到了Storyboard
所以我没有任何 ViewController 和 SecondViewController 实例。方法- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
只返回YES。
问题是:我必须将时间从应用程序激活时显示的@property NSDate
实例传递到SecondViewController
哪个实例,但我不知道如何检查SecondViewController
应用程序来自后台后是否显示。
我知道我可以使用 AppDelegate:
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
然后得到他的NSDate @property
,但我怎样才能检查我什么时候必须得到这些数据?
我应该使用哪种方法ViewController
?