Created
February 12, 2025 23:25
-
-
Save stephancasas/5546bf11952ece5e38d02d29f8b5e18d to your computer and use it in GitHub Desktop.
A basic SwiftUI expression of the native Apple Intelligence NSIntelligenceUILightView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// IntelligenceLightView.swift | |
// | |
// Created by Stephan Casas on 2/12/25. | |
// | |
import SwiftUI | |
import AppKit | |
struct IntelligenceLightView: NSViewRepresentable { | |
func makeNSView(context: Context) -> some NSView { | |
guard | |
let nsIntelligenceUILightViewClass = NSClassFromString("NSIntelligenceUILightView") as? NSView.Type | |
else { | |
print("Could not locate pointer for private class NSIntelligenceUILightView.") | |
return NSView(frame: .zero) | |
} | |
return nsIntelligenceUILightViewClass.init(frame: .zero) | |
} | |
func updateNSView(_ nsView: NSViewType, context: Context) { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment