我试图在UICollectionView上放置一堆选项,使用IBAction作为触发器打开它的每个选项,但是我很难用什么代码调用来触发我的动作使用IBAction。这是我的代码:
@IBAction func openNewFilter(sender: AnyObject) {
self.collectionView.dataSource = indexPath.section == 0
}
func numberOfSections() -> Int {
return 2
}
func numberOfItemsInSection(_ section: Int) -> Int {
if section == 0
{
return array.count
}
else if section == 1
{
return 1
}
else
{
return 0
}
}
func cellForItemAtIndexPath(_ indexPath: NSIndexPath) -> UICollectionViewCell? {
if indexPath.section == 0
{
}
else if indexPath.section == 1
{
}
}
如果你能帮助我,我将不胜感激,谢谢.. !!