Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
587 views
in Technique[技术] by (71.8m points)

objective c - How can I get all supported screen resolutions on mac OSX Swift

I want a code that

1)grabs my current screen resolution, (solved).

For example : to get current screen display code is :

system_profiler SPDisplaysDataType |grep Resolution

2)grabs all supported resolution as shown in picture below (unsolved).

or any Objective C code will be also useful

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Xcode 11 ? Swift 5.1

extension CGDirectDisplayID  {
    var displayMode: CGDisplayMode? { CGDisplayCopyDisplayMode(self) }
    func allDisplayModes(options: CFDictionary? = nil) -> [CGDisplayMode] { CGDisplayCopyAllDisplayModes(self, options) as? [CGDisplayMode] ?? [] }
}

extension CGDisplayMode {
    var resolution: String { .init(width) + " x " + .init(height) }
}

struct Display {
    static var main: CGDirectDisplayID { CGMainDisplayID() }
    static var mode: CGDisplayMode? { main.displayMode }
    static func allModes(for directDisplayID: CGDirectDisplayID = main) -> [CGDisplayMode] { directDisplayID.allDisplayModes() }
}

Usage:

if let resolution = Display.mode?.resolution {
    print("Resolution:", resolution)
}
for mode in Display.allModes() {
    print(mode.resolution)
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...