如何使用IBAction调用UICollectionView上的索引?

时间:2015-04-01 04:25:36

标签: ios iphone swift xcode6 uicollectionview

我试图在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 
    {

    }
}

如果你能帮助我,我将不胜感激,谢谢.. !!

0 个答案:

没有答案