Есть ли способ настроить nscollectionview программно в Swift?
Я прихожу из разработки iOS, и мне интересно, есть ли способ настроить NSCollectionView
программно как UICollectionView
в iOS? И добавьте NSCollectionViewItems
в коде. Или это единственный способ настроить NSCollectionView
использовать привязки?
Спасибо!
3 ответов
спасибо @stevesliva за указание мне это так ответ. Я превратил его в Swift. Вот что у меня есть.
Я создаю NSCollectionView в ViewController:
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!)
}
}
созданный CollectionViewItem в ViewController просто загружает представление, где я настраиваю само представление элемента.
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
}
}
настроить название кнопки, я использую своего рода Хак. (цикл for в ViewController) Если есть лучший способ установить название, пожалуйста, не стесняйтесь оставлять комментарий.
для 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
}
}