2019-03-18a few seconds read (About 30 words)How to load top level view from xib in macOSIssue #171 123var views: NSArray?NSNib(nibNamed: NSNib.Name("ProfileView"), bundle: nil)?.instantiate(withOwner: nil, topLevelObjects: &views)let profileView = views!.compactMap({ $0 as? ProfileView }).first!#swiftmacOS