Я делаю приложение iOS быстрым, и я пытаюсь сделать collectionView программным путем. Я хочу использовать свой собственный подкласс UICollectionReusableView в качестве заголовка для коллекции, потому что мне нужны кнопки и растяжимое изображение в заголовке.
SupView - это UICollectionReusableView.
override func viewDidLoad() {
super.viewDidLoad()
let layout = UICollectionViewFlowLayout()
layout.headerReferenceSize = CGSizeMake(self.view.frame.width, 200)
someView = SupView(frame: CGRectMake(0, 0, view.frame.width, 200))
collectionView = UICollectionView(frame: self.view.frame, collectionViewLayout: layout)
collectionView.delegate = self
collectionView.dataSource = self
collectionView.registerClass(UICollectionViewCell.self, forCellWithReuseIdentifier: "Cell")
collectionView.registerClass(UICollectionReusableView.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "headerCell") // UICollectionReusableView
self.view.addSubview(collectionView)
}
Я пытаюсь вставить дополнительный вид в viewForSupplementaryElementOfKind
, как это, но я получаю сообщение об ошибке при попытке создать заголовок:
func collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView {
var reusableView : UICollectionReusableView? = nil
// Create header
if (kind == UICollectionElementKindSectionHeader) {
// Create Header
let headerView = collectionView.dequeueReusableSupplementaryViewOfKind(UICollectionElementKindSectionHeader, withReuseIdentifier: "headerCell", forIndexPath: indexPath) as! SupView
headerView.frame = CGRectMake(0, 0, view.frame.width, 200)
reusableView = headerView
}
return reusableView!
}
Ошибка находится в let headerView = ...
и говорит: "сигнал SIGABRT"
Как мне инициализировать headerview, поэтому я могу вносить свой вклад в мой поток?, возможно, с помощью
collectionView.registerClass(UICollectionReusableView.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "headerCell")
но если я попытаюсь зарегистрировать класс SupView, это даст мне ошибку:
.../collectionViewPlay/ViewController.swift: 32: 24: Невозможно вызвать 'registerClass' со списком аргументов типа '(SupView!, forSupplementaryViewOfKind: String, withReuseIdentifier: String)'
Любые идеи?
EDIT:
Была запрошена реализация подкласса:
import UIKit
class SupView: UICollectionReusableView {
//////////////////////////////////////////////////////////////////////////////
override init(frame: CGRect) {
super.init(frame: frame)
self.myCustomInit()
}
//////////////////////////////////////////////////////////////////////////////
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
self.myCustomInit()
}
func myCustomInit() {
print("hello there from SupView")
}
}