我的应用会在应用程序进入后台时捕获一些信息(时间戳,计时器)并再次变为活动状态。一旦App再次变为活动状态,我想在视图上更新该信息。我使用
控制应用程序public override void WillEnterForeground (UIApplication application)
{
// Here i calculate few thing and i want to update that value on a different screen
// which will get called next.
}
如何设置不同屏幕的varibes值?
谢谢