Detecting iOS Dark Mode Change

后端 未结 6 1738
悲哀的现实
悲哀的现实 2020-12-14 16:19

I read through the documentation regarding: https://developer.apple.com/documentation/appkit/supporting_dark_mode_in_your_interface

When the user chan

6条回答
  •  渐次进展
    2020-12-14 16:35

    in iOS Swift 5

    override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
      // Do sonthing
    }
    

提交回复
热议问题