UICollectionView数组索引超出范围

问题描述 投票:1回答:1

我正在尝试在Swift中创建一个非常基本的集合视图控制器,该控制器允许我列出一些数字,当我点击其中一个数字时,它将带我到详细信息页面,该页面仅简单地(在标签中)说出您所点击的数字。

故事板:我的情节提要板有一个导航控制器作为根,并有一个加载视图的集合视图控制器。它包含一个具有单元格标识符的单元格。该单元格具有一个按钮,可以用作详细信息页面的按钮。我已将数据源分配为指向自身(控件单击了指向视图控制器的行以建立数据源),并且已将标识唯一标识为showDetail。

当我加载该应用程序时,它会显示我的按钮7次,但是当我单击其中的任何一个按钮时,都会在下一行获得超出范围的索引:

这是我的代码:

import Foundation
import UIKit


class WeekCollectionView : UICollectionViewController
{
    override func collectionView(collectionView: UICollectionView!, numberOfItemsInSection section: Int) -> Int
    {
        return 7
    }

    override func collectionView(collectionView: UICollectionView!, cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionViewCell!

    {
      let cell: ShiftCell = collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as ShiftCell
        return cell;
    }

    override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!)

    {    
        if (segue.identifier == "showDetail") {
           **//CRASHES ON THIS LINE BELOW FOR THE ARRAY [0]** 
            let indexPaths: NSArray = self.collectionView.indexPathsForSelectedItems()[0] as NSArray
            let destinationViewController = segue.destinationViewController as DetailViewController
            //var someNumber = images[indexPath.row]
            destinationViewController.mySpecialID = 1 //replace this with someNumber, always set 1 for now as a test
        }
    } 
}

我的单元格类别(上面)很简单:

class ShiftCell: UICollectionViewCell { 
   init(frame: CGRect) {
      super.init(frame: frame)
   }

  init(coder aDecoder: NSCoder!) {
       super.init(coder: aDecoder)
   }

}

我真的不确定自己做错了什么-也许故事板上还需要做其他事情?我遵循了来自apple(在Objective-C中)的教程,该教程运行良好,并且如果我没有记错的话,所有代码方面都是相同的!

我真的被困在这里,非常感谢任何人能指出我正确的方向! :)

ios ios7 swift xcode-storyboard
1个回答
0
投票

由于没有选定的项目,因此发生此崩溃。您在单元格顶部有一个按钮,该按钮阻止触摸到达该单元格以进行实际选择。您将不得不提出一种不同的方式来标识每个按钮代表的行。一种常见的模式是使用按钮的tag属性。这可以存储任意整数以帮助您识别视图。

© www.soinside.com 2019 - 2024. All rights reserved.