How could I put NSTexField, NSViewController together in the same cocoa class?
import Cocoa
import Foundation
class Licencia: NSTextField , NSViewController {}
How could I put NSTexField, NSViewController together in the same cocoa class?
import Cocoa
import Foundation
class Licencia: NSTextField , NSViewController {}
Swift and Objective-C are unique inheritance, you can not have more than one superclass for a class.