ios개발/개념 정리

<스위프트 에러> Cannot force unwrap value of non-optional type 'String'

studying develop 2020. 3. 22. 01:48

let attributeOptions = try doc.getElementsByClass("attribute-options").first()?.text()!

 

에러 메시지

Cannot force unwrap value of non-optional type 'String'

Replace '!' with ''

 

근데 이렇게는 또 언랩해야되서

storage.photographer = photographer!

 

에러를 정확히 이해 못해서 저장해 놨따.