String+Indexpath.swift 629 B

1234567891011121314151617181920212223242526
  1. //
  2. // String+Indexpath.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 03/10/23.
  6. //
  7. import Foundation
  8. extension IndexPath {
  9. // Create a convenience initializer to parse a string into an IndexPath
  10. init?(string: String) {
  11. let components = string.components(separatedBy: ",")
  12. guard components.count == 2,
  13. let section = Int(components[0]),
  14. let row = Int(components[1]) else {
  15. return nil
  16. }
  17. self.init(row: row, section: section)
  18. }
  19. // Convert IndexPath to a string
  20. var stringValue: String {
  21. return "\(section),\(row)"
  22. }
  23. }