有没有办法在Swift中以编程方式设置NSCollectionView?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有没有办法在Swift中以编程方式设置NSCollectionView?相关的知识,希望对你有一定的参考价值。
我来自ios开发,我想知道是否有一种方法可以像iOS中的NSCollectionView
一样以编程方式设置UICollectionView
?并在代码中添加NSCollectionViewItems
。或者是设置NSCollectionView
以使用绑定的唯一方法?
谢谢!
感谢@stevesliva指点我this SO answer。我将它转换为Swift。这就是我得到的。
我在ViewController中创建一个NSCollectionView:
import Cocoa
class ViewController: NSViewController {
var titles = [String]()
var collectionView: NSCollectionView?
override func viewDidLoad() {
super.viewDidLoad()
self.titles = ["Banana", "Apple", "Strawberry", "Cherry", "Pear", "Pineapple", "Grape", "Melon"]
collectionView = NSCollectionView(frame: self.view.frame)
collectionView!.itemPrototype = CollectionViewItem()
collectionView!.content = self.titles
collectionView!.autoresizingMask = NSAutoresizingMaskOptions.ViewWidthSizable | NSAutoresizingMaskOptions.ViewMaxXMargin | NSAutoresizingMaskOptions.ViewMinYMargin | NSAutoresizingMaskOptions.ViewHeightSizable | NSAutoresizingMaskOptions.ViewMaxYMargin
var index = 0
for title in titles {
var item = self.collectionView!.itemAtIndex(index) as! CollectionViewItem
item.getView().button?.title = self.titles[index]
index++
}
self.view.addSubview(collectionView!)
}
}
ViewController中创建的CollectionViewItem只加载一个视图,我在其中设置项目视图本身。
import Cocoa
class CollectionViewItem: NSCollectionViewItem {
var itemView: ItemView?
override func viewDidLoad() {
super.viewDidLoad()
// Do view setup here.
}
override func loadView() {
self.itemView = ItemView(frame: NSZeroRect)
self.view = self.itemView!
}
func getView() -> ItemView {
return self.itemView!
}
}
视图本身:
import Cocoa
class ItemView: NSView {
let buttonSize: NSSize = NSSize(width: 100, height: 20)
let itemSize: NSSize = NSSize(width: 120, height: 40)
let buttonOrigin: NSPoint = NSPoint(x: 10, y: 10)
var button: NSButton?
override func drawRect(dirtyRect: NSRect) {
super.drawRect(dirtyRect)
// Drawing code here.
}
override init(frame frameRect: NSRect) {
super.init(frame: NSRect(origin: frameRect.origin, size: itemSize))
let newButton = NSButton(frame: NSRect(origin: buttonOrigin, size: buttonSize))
newButton.bezelStyle = NSBezelStyle.RoundedBezelStyle
self.addSubview(newButton)
self.button = newButton;
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func setButtonTitle(title: String) {
self.button!.title = title
}
}
要设置按钮标题,我使用的是一种黑客攻击。 (ViewController中的for循环)如果有更好的方法来设置标题,请随时发表评论。
对于Swift 2.0,您需要将collectionView!.autoresizingMask
行更改为:
长手:
collectionView?.autoresizingMask = NSAutoresizingMaskOptions([NSAutoresizingMaskOptions.ViewWidthSizable,NSAutoresizingMaskOptions.ViewMaxXMargin,NSAutoresizingMaskOptions.ViewMinYMargin,NSAutoresizingMaskOptions.ViewHeightSizable,NSAutoresizingMaskOptions.ViewMaxYMargin])
或者是空手:
collectionView?.autoresizingMask = NSAutoresizingMaskOptions([.ViewWidthSizable,.ViewMaxXMargin,.ViewMinYMargin,.ViewHeightSizable,.ViewMaxYMargin])
你需要在NSCollectionView
中嵌入NSScrollView
。下面的代码在Swift 4中
设置NSCollectionView
let layout = NSCollectionViewFlowLayout()
layout.minimumLineSpacing = 4
collectionView = NSCollectionView()
collectionView.dataSource = self
collectionView.delegate = self
collectionView.collectionViewLayout = layout
collectionView.allowsMultipleSelection = false
collectionView.backgroundColors = [.clear]
collectionView.isSelectable = true
collectionView.register(
Cell.self,
forItemWithIdentifier: NSUserInterfaceItemIdentifier(rawValue: "Cell")
)
设置NSScrollView
scrollView = NSScrollView()
scrollView.documentView = collectionView
view.addSubview(scrollView)
这是一个简单的NSCollectionViewItem
class Cell: NSCollectionViewItem {
let label = NSTextField()
let imageView = NSImageView()
override func loadView() {
self.view = NSView()
self.view.wantsLayer = true
}
}
以上是关于有没有办法在Swift中以编程方式设置NSCollectionView?的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在 Windows 上的 C++ 中以编程方式设置环境路径?
如何在 Swift 中以编程方式调整 UIButton 中文本的字体大小以适应宽度?
在 Swift 中以编程方式设置 tabBarItem 标题