由于AppKit没有提供NSLabel,我们需要找到类似的东西。 NSTextField可能是我需要的东西吗?
如何在Swift中执行this?
var searchResults = client.Search<Product>(s => s
.Index(Constants.ElasticSearchIndex)
.Type(Constants.ElasticSearchType)
.Query(q => q
.Raw(jsonRequest)
)
);
感谢您的帮助!