私は最初にコレクションビューで変数carmakerのリストを表示しようとしていますが、最初のコレクションビューからHondaをクリックすると、リストが変数Hondaに変わります。 「致命的なエラー:インデックス範囲外」私はそれは私にエラーを与えるの下からのコード実行するたびに私は理解していない cell.title.text = Honda[indexPath.row]
から来るエラーをなぜそれがと同じ値(4)があるためHonda.count
前の値がクリックされたときにuicollectionview numberofsectionが変更されます
var selectedrow = 0
var choice1 = ""
var choice2 = ""
// car make
var carmake = ["Honda","Toyota","AUDI","Bentley","BMW","Mercedez","Buick","Cadillac","KIA","Chevrolet","Corvette","Dodge","FIAT","Ford","GMC","Hyundai","Infiniti","Jaguar","JEEP","LandRover","LEXUS","Mazda","Nissan","RAM","Porsche","Scion","Volkswagen"]
// car model
var Honda = ["Oddyssey","Civic","Fit","Adam"]
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
switch choice1 {
case "Honda":
let hon = Honda.count
print(hon)
return Honda.count
default:
print("default")
return carmake.count
}
}
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = viewcontrol.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! jobtypeCollectionViewCell
switch choice1 {
case "Honda":
//let number = Honda[indexPath.row]
//print(number)
cell.title.text = Honda[indexPath.row]
default:
cell.title.text = carmake[indexPath.row]
}
return cell
}
func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
selectedrow = indexPath.row
switch carmake[selectedrow] {
case "Honda":
print("honda")
choice1 = "Honda"
print(choice1)
default:
print("none selected")
}
}
ここで、コレクションビューをリロードしますか? –
あなたのコメントを読んで、numberofsectionとcellforitematindexpath関数の両方で 'case" Honda ":'の後にself.collectionView.reloadData()を置こうとしましたが、まだ同じエラーが発生します – freelixa
これらのメソッドでデータをリロードしないでください。どこに元々置いたのですか? –