我正在做一個基本的測驗應用程序。選擇是以表格的形式。如果用戶移動到上一個問題,我想向他展示他先前選擇的選項。我已經將選擇存儲在NSUserDefaults中。我如何將這個int值轉換爲NSIndexpath並在我的tableview中使用它?如何將int轉換爲nsindexpath?
16
A
回答
50
在你的情況,你可以使用(Swift):
let indexPath = NSIndexPath(forRow: 0, inSection: 0)
雨燕3.0:
let indexPath = IndexPath(row: 0, section: 0)
4
重複我複製這裏
在收到回答對於int指數:
NSIndexPath *path = [NSIndexPath indexPathWithIndex:index];
創建的項目的索引在節點0到指向具體根據參考。
要在一個UITableView使用indexPath,更合適的方法是
NSIndexPath *path = [NSIndexPath indexPathForRow:yourInt inSection:section];
0
你可以indexpath使用下面的代碼
NSIndexPath *index = [NSIndexPath indexPathForRow:YOURINTSTORED inSection:0];
+1
這是ObjectiveC,不是Swift – zisoft 2015-04-03 07:41:51
相關問題
- 1. 如何將NSIndexPath轉換爲NSInteger?
- 2. 如何將NSIndexPath轉換爲NSString-iOS
- 3. 將NSInteger轉換爲NSIndexpath
- 4. 如何將int數組轉換爲int?
- 5. 如何將int []類型轉換爲int?[]
- 6. 將[Int?]轉換爲[Int]
- 7. 將int轉換爲int []
- 8. 將IO Int轉換爲Int
- 9. 如何將int轉換爲枚舉值?
- 10. 如何將Scope_Identity()轉換爲Int?
- 11. 如何將元組轉換爲int?
- 12. 如何將pfCashedNumer轉換爲int?
- 13. 如何將list.files()輸出轉換爲int?
- 14. 如何將Integer []轉換爲int []?
- 15. 如何將int轉換爲char *?
- 16. 如何將字符串轉換爲int
- 17. 如何將字符串轉換爲Int?
- 18. 如何將此COUNT轉換爲INT?
- 19. 如何將int []轉換爲byte []
- 20. 如何將varchar列值轉換爲int?
- 21. 如何將壞的HINSTANCE轉換爲int?
- 22. 如何將int轉換爲signed char?
- 23. 如何將int轉換爲字節?
- 24. 如何將int轉換爲位?
- 25. 如何將PVOID轉換爲int?
- 26. 如何將int轉換爲VARTYPE?
- 27. 如何將int []轉換爲Big Integer?
- 28. 如何將字符串轉換爲int?
- 29. 如何將int轉換爲id?
- 30. 如何將Option [String]轉換爲Option [Int]?
這是的ObjectiveC,而不是斯威夫特 – zisoft 2015-04-03 07:42:18
很公平,但它的工作原理是相同的。您可以使用swift代碼版本向我的帖子建議編輯。我打賭有一個相同的方法;) – 2015-04-03 07:43:25
他不妨發表他自己的回答。 – Josh 2015-06-16 15:28:00