Skip to content

Instantly share code, notes, and snippets.

@stephancasas
Created February 12, 2025 23:25
Show Gist options
  • Save stephancasas/5546bf11952ece5e38d02d29f8b5e18d to your computer and use it in GitHub Desktop.
Save stephancasas/5546bf11952ece5e38d02d29f8b5e18d to your computer and use it in GitHub Desktop.
A basic SwiftUI expression of the native Apple Intelligence NSIntelligenceUILightView
//
// 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