| 1234567891011121314151617181920212223242526 |
- //
- // ViewController.swift
- // Reddit App
- //
- // Created by Mql Mac 2 on 19/06/2026.
- //
- import Cocoa
- class ViewController: NSViewController {
- override func viewDidLoad() {
- super.viewDidLoad()
- // Do any additional setup after loading the view.
- }
- override var representedObject: Any? {
- didSet {
- // Update the view, if already loaded.
- }
- }
- }
|