Avatar
Avatar
Iceman
@swift-6.0.3 import Foundation let text = "2024-12-03T15:28:23 +09:00" print(try? Date(text, strategy: .iso8601))
nil<stdin>:3:7: warning: expression implicitly coerced from 'Date?' to 'Any' 1 | import Foundation 2 | let text = "2024-12-03T15:28:23 +09:00" 3 | print(try? Date(text, strategy: .iso8601)) | | |- note: provide a default value to avoid this warning | | |- note: force-unwrap the value to avoid this warning | | `- note: explicitly cast to 'Any' with 'as Any' to silence this warning | `- warning: expression implicitly coerced from 'Date?' to 'Any' 4 |