如何在系统变量上设置 属性 观察者
How to set a property observer on system variable
我有以下变量:private var screenWidth = UIScreen.mainScreen().bounds.width
我想知道如何在其上设置 属性 观察者?或者更新时获取最新版本?
没有适用于所有情况的通用方法。您可以经常使用 Key-Value Observing. In this case, you can listen for the UIScreenModeDidChangeNotification
通知。
我有以下变量:private var screenWidth = UIScreen.mainScreen().bounds.width
我想知道如何在其上设置 属性 观察者?或者更新时获取最新版本?
没有适用于所有情况的通用方法。您可以经常使用 Key-Value Observing. In this case, you can listen for the UIScreenModeDidChangeNotification
通知。