我有一個使用CoreData的數據輸入列表的TableViewController。我也有TextView的ViewController。我已完成操作,如添加,保存和刪除項目。現在我正在通過將選定的TableViewCell鏈接到下一個ViewController上的TextView來進行編輯。但是,由於'inout IndexPath'不能轉換爲'IndexPath',所以出現錯誤。如何解決這個錯誤?錯誤:'inout IndexPath'不能轉換爲'IndexPath'
1
A
回答
0
func getIndexPathForSelectedCell() -> IndexPath?
{
var indexPath2:IndexPath?
if TABLEVIEW.indexPathsForSelectedItems!.count > 0 {
indexPath2 = TABLEVIEW.indexPathsForSelectedItems![0]
}
return indexPath2
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if (segue.identifier == "detailView")
{
print("Segue Clicked. werwerewrere..................................")
if let indexPath2 = getIndexPathForSelectedCell()
{
// here write code for move to next controller.
let YOUR_NEXT_CONTROLLER_OBJECT = segue.destination as! YOUR_NEXT_CONTROLLER_CLASS_NAME
YOUR_NEXT_CONTROLLER_OBJECT.KEY = PASS_DATA_VALUE
}
}
}
+0
評論不適用於擴展討論;這個對話已經[轉移到聊天](http://chat.stackoverflow.com/rooms/131567/discussion-on-answer-by-himanshu-moradiya-errorinout-indexpath-is-not-convert)。 –
0
let indexPathForSelectedRow = tableView.indexPathForSelectedRow
let row: Int = (indexPathForSelectedRow?.row)!
print(row);
相關問題
- 1. swift3將int轉換爲indexPath
- 2. didSelectRowAtIndex錯誤indexPath
- 3. UICollectionView和UICollectionViewCell IndexPath錯誤
- 4. NSFetchedResultsController didChangeObject indexPath爲空
- 5. 復位indexPath爲uicollectionview
- 6. didDeselectItemAt indexPath不觸發
- 7. NSFetchedResultsController添加錯誤indexPath中的項目
- 8. UICollectionView dequeueReusableCellWithReuseIdentifier:forIndexPath:錯誤indexPath複用小區
- 9. indexPath UICollectionView的值
- 10. IndexPath混亂
- 11. MapView註解indexPath?
- 12. UITableViewController didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- 13. indexPath調整iPhone
- 14. collectionView.cellForItem(在:indexPath)不能正常工作
- 15. 我不能夠在didselectrowwith indexpath方法
- 16. [indexPath row]中的EXC_BAD_ACCESS
- 17. indexPath更改爲UITableViewController後爲零
- 18. 獲取UICollectionViewCell的indexPath
- 19. indexPath的行索引
- 20. IndexPath for segue from accessoryButton
- 21. 如何獲得indexpath?
- 22. UITableView indexPath null問題
- 23. 如何通過indexPath
- 24. Swift indexpath =可選(0)
- 25. indexPath in viewControllerToCommit函數
- 26. UITableView - 什麼是indexPath?
- 27. 在uitableviewcell中的uibutton給我的indexpath小於實際的indexpath iOS7
- 28. CollectionViewCell中的UIButton「IndexPath不起作用」
- 29. 與heightForRowAt indexPath有問題
- 30. 如何從IndexPath得到int
VAR indexPath:IndexPath = tableView.indexPathForSelectedRow!這裏是錯誤它不能轉換那樣 –
Himanshu Moradiya @先生,Plzz精心解答?我是新來的快! – Tamannah
檢查我的答案,如果我的代碼中的任何查詢然後發表評論。 –