作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
单点触控
当应用程序返回前台时,我需要激活的 ViewController 来了解这一点。
是否有一个事件或覆盖我可以用来确定 View 被带到前台。
我确实找到了“WillEnterForegroundNotification”,但它是一个字符串,所以我不确定它是如何使用的。
最佳答案
我找到了这个:
把它放在 ViewController 的 CTOR 中:
NSNotificationCenter.DefaultCenter.AddObserver (UIApplication.WillEnterForegroundNotification,
EnterForeground);
void EnterForeground (NSNotification notification)
{
Console.WriteLine("EnterForeground: " + notification.Name);
}
public override void WillEnterForeground (UIApplication application)
关于notifications - 单点触控 : Controller brought to foreground - Notification?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5496358/
我是一名优秀的程序员,十分优秀!