123456789101112131415161718192021222324252627282930 |
- //
- // KMGuideCoverView.swift
- // PDF Reader Pro Edition
- //
- // Created by Niehaoyu on 2023/12/8.
- //
- import Cocoa
- class KMGuideCoverView: NSView, NibLoadable {
- override func draw(_ dirtyRect: NSRect) {
- super.draw(dirtyRect)
-
- guard let context = NSGraphicsContext.current?.cgContext else {
- return
- }
- NSColor(red: 1, green: 1, blue: 1, alpha: 0.01).set()
- context.addRect(dirtyRect)
- context.fillPath()
- context.setBlendMode(.clear)
- context.fillPath()
- }
-
-
- override func awakeFromNib() {
- super.awakeFromNib()
-
- }
- }
|