Skip to content

Instantly share code, notes, and snippets.

View NicholasBellucci's full-sized avatar
💭
👨‍💻

Nicholas Bellucci NicholasBellucci

💭
👨‍💻
View GitHub Profile
@NicholasBellucci
NicholasBellucci / ScrollingTextView.swift
Last active March 1, 2024 03:37
MacOS swift marquee scrolling text view
import Cocoa
open class ScrollingTextView: NSView {
// MARK: - Open variables
/// Text to scroll
open var text: NSString?
/// Font for scrolling text
open var font: NSFont?