当应用程序进入后台并再次激活时,我的应用程序会捕获一些信息(时间戳、计时器)。一旦 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.
}
如何设置来自不同屏幕的变量值?
谢谢