属性监听器
/// 为scrollView的contentOffset属性,添加一个监听者
scrollView.addObserver(self,forKeyPath: contentOffset,options: .new,context: nil)
// 监听UIScrollView的contentOffset属性
override func observeValue(forKeyPath keyPath: String?,of object: Any?,change: [NSKeyValueChangeKey : Any]?,context: UnsafeMutableRawPointer?) {
// 如果keyPath是contentOffset,则调用下面的方法
if (contentOffset == keyPath) {
self.adjustStateWithContentOffset()
}
}