单点触控
当应用程序返回前台时,我需要激活的 ViewController 来了解这一点。
是否有一个事件或覆盖我可以用来确定 View 被带到前台。
我确实找到了“WillEnterForegroundNotification”,但它是一个字符串,所以我不确定它是如何使用的。
最佳答案
我找到了这个:
把它放在 ViewController 的 CTOR 中:
NSNotificationCenter.DefaultCenter.AddObserver (UIApplication.WillEnterForegroundNotification,
EnterForeground);
然后创建此方法来处理 View Controller 中的事件。
void EnterForeground (NSNotification notification)
{
Console.WriteLine("EnterForeground: " + notification.Name);
}
注意:当您的应用程序被带到前台时, UIApplicationDelegate 将首先引发此问题,这是清除登录详细信息和安全相关检查等内容的好地方。
public override void WillEnterForeground (UIApplication application)
关于notifications - 单点触控 : Controller brought to foreground - Notification?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5496358/