'Class FIFinderSyncExtensionHost is implemented in both …' warning in Xcode since update to macOS High Sierra

前端 未结 2 1218
太阳男子
太阳男子 2020-12-02 01:20

I am getting the following warning in the Xcode console while running (not compiling) my application since updating to High Sierra on my MacBook:

objc

相关标签:
2条回答
  • 2020-12-02 02:12

    Maybe try this, it is supposed to work on macOS Mojave 10.14.2. Since I updated to newer version(10.14.6) the warning is back.

        import PyQt5.QtWidgets as pyqt
        options = pyqt.QFileDialog.Options()
        options |= pyqt.QFileDialog.DontUseNativeDialog
    
    0 讨论(0)
  • 2020-12-02 02:18

    There's nothing you can do about this. It's an Apple problem, but it's probably harmless.

    Note: I'm not sure what other description could be given than what the warning says. It just means that the same class is defined in two modules. With Apple stuff, they're often identical so it doesn't matter which copy is used.

    0 讨论(0)
提交回复
热议问题