我在UITableViewCell
中使用UITextField
,併爲每個textFields分配tags
。但是在滾動tableView之後,textFields的標籤被改變了。我正在使用swift 3.如何在滾動時使textFields的標籤保持不變?我不使用故事板。swift中的TableView 3
-1
A
回答
0
在斯威夫特3指定文本字段標籤作爲indexPath.row
試試這個代碼: -
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ReuseIdentifer", for: indexPath) as UITableViewCell
cell.textField.tag = indexPath.row
}
0
可以將標籤屬性設置爲indexPath.row,它會正常工作。 正如如下,
在的cellForRowAtIndexPath:寫:
let cell = tableView.dequeueReusableCell(withIdentifier:"ReuseIdentifer", for: indexPath) as! UITableViewCell
cell.textField.tag = indexPath.row
相關問題
- 1. Swift 3與tableView的錯誤
- 2. SWIFT 3的tableview崩潰
- 3. Swift 3 - 在TableView中的numberOfRowsInSection後崩潰
- 4. Swift 3從Dictionary中填充TableView?
- 5. Swift 3我的tableView不是populatinG?
- 6. 如何排序TableView A-Z? (SWIFT 3)
- 7. swift 3 tableView在reloadData上沒有更新()
- 8. swift 3 tableView與2 tableCellsViews代理怪異
- 9. Swift 3和Firebase - Tableview不更新
- 10. 在swift 3的tableview中更新tableviewcell中的特定行?
- 11. swift 3從tableView傳遞數據到另一個TableVIew?
- 12. TableView中的Swift類成員
- 13. UIViewController中的Swift動態tableview
- 14. Swift中的TableView高度
- 15. swift ios中的tableview detailTextLabel
- 16. tableView Swift中的乘積值
- 17. Swift 3:如何從TableView中刪除額外的空間?
- 18. JSON不會解析到Swift中的TableView 3
- 19. 在tableview中顯示兩個可重用的單元格Swift 3
- 20. SWIFT的TableView錯誤
- 21. Swift TableView scrollsToTop
- 22. Swift tableView ambigious
- 23. Swift - 清除TableView
- 24. Swift - tableview bringSubviewToFront
- 25. Swift tableView分頁
- 26. Swift TableView deleteRowsAtIndexPaths NSException
- 27. Json Tableview Swift
- 28. Swift TableView for iOS
- 29. swift - tableview EXC_BREAKPOINT崩潰
- 30. swift - coredata刷新tableview
你能表現出一定的代碼?你的TableView數據源的代碼,特別是在你的'cellForRow' – Glenn
[iOS Swift項目中如何訪問UITableViewCell contentView的子視圖中的變量]的可能重複(https://stackoverflow.com/questions/34701707/how-to-訪問變量-中之子視圖-的-的UITableViewCell-內容查看功能於IOS-S) –