【发布时间】:2018-07-16 11:54:26
【问题描述】:
当我点击任何集合视图单元格(不点击最后一个单元格)时,如何移动另一个视图控制器?我不知道如何解决这个问题,我是 iOS 应用开发的初学者。
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return addCategory.count + 1
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cellID = indexPath.row < addCategory.count ? "CategoryCell" : "ExtraCell"
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellID, for: indexPath)
setupCell(cell: cell, indexPath: indexPath, type: cellID)
return cell
}
func setupCell(cell: UICollectionViewCell, indexPath: IndexPath, type: String) {
switch(type) {
case "CategoryCell": setupCategoryCell(cell: cell as! CategoryCollectionCell, indexPath: indexPath)
case "ExtraCell": setupAddButtonCell(cell: cell as! CategoryExtraCell, indexPath: indexPath)
default: break
}
}
func setupCategoryCell(cell: CategoryCollectionCell, indexPath: IndexPath) {
let cat = addCategory[indexPath.row]
cell.lblHeader.text = cat.category_name
//cell.lblHeader.text = arrHeader[indexPath.row]
//cell.lblSubHeader.text = arrSubHeader[indexPath.row]
}
func setupAddButtonCell(cell: CategoryExtraCell, indexPath: IndexPath) {
//Extra Button "Add Button" in a cell
}
当我点击任何单元格(不点击最后一个单元格)时,它不会移动到另一个视图控制器,应用程序崩溃并且不显示任何错误。
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
self.collCategory.allowsMultipleSelection = false
if indexPath.row < addCategory.count {
print("Main Cell")
for i in 0..<addCategory.count {
if indexPath.row == i {
let categoryTaskVC = storyboard?.instantiateViewController(withIdentifier: "CategoryTaskVC") as! CategoryTaskVC
self.navigationController?.pushViewController(categoryTaskVC, animated: true)
//let cat = addCategory[i]
//categoryTaskVC.lblHeader.text = cat.category_name
print("OK")
} else {
print("error")
}
}
} else {
print("Add New Cell")
self.blurEffects()
view.addSubview(blurEffectView)
//Alert View Controller when Adding Categories...
let inputBox = BMInputBox.boxWithStyle(.plainTextInput)
inputBox.blurEffectStyle = .extraLight
inputBox.title = NSLocalizedString("Add Category", comment: "")
inputBox.message = NSLocalizedString("Please enter unique category name.", comment: "")
inputBox.customiseInputElement = {(element: UITextField) in
element.placeholder = "Enter a category"
return element
}
inputBox.submitButtonText = NSLocalizedString("OK", comment: "")
inputBox.onSubmit = {(value: String...) in
//Store value in text field in "text" object.
for text in value {
let strCategory = text
print("STR CATE : \(strCategory)")
DispatchQueue.main.async(execute: {
//Store category in CoreData
categoryCoreData.saveData(tfCat: strCategory)
//Fetch Category Data
categoryCoreData.fetchData()
self.collCategory.reloadData()
})
}
self.blurEffectView.removeFromSuperview()
}
inputBox.cancelButtonText = NSLocalizedString("Cancel", comment: "")
inputBox.onCancel = {
//Remove blur effects from Superview
self.blurEffectView.removeFromSuperview()
}
inputBox.show()
}
}
【问题讨论】:
-
尝试为所有异常添加断点。这是你如何做到的。 blog.manbolo.com/2012/01/23/xcode-tips-1-break-on-exceptions
-
didSelect中的for循环的目的是什么? -
将数据传输到下一个屏幕@Paulw11
-
仍然面临问题?
-
我知道您正在推动一个新的视图控制器,但
for循环似乎完全没有必要。当您可以直接使用indexPath,row时,为什么还要尝试查找i == indexPath.row。
标签: ios swift core-data uicollectionview