[Swift] 자주 실수하는 오류 정리

 문제  → 해결

  •  Invalid escape sequence in literal  → String에 \같은 기호 문자 들어가있을 때
  •  No exact matches in call to instance method 'append’  → 타입이 다를 때 (ex. Array 타입이 아닌데 append를 시도함 등) 타입을 확인해보면 됨
  • TableViewCell, CollectionViewCell에 API 결괏값을 넣어줄 때, 첫번째 cell의 값에는 왜 아직 안 들어가있지? → reloadData() 잘 사용하기!
  •  Unexpectedly found nil while implicitly unwrapping an Optional value  → nib 연결 안해줬거나 tableView.dequeueReusableCell 안 쓴 경우에 자주 발생함!!

 

천천히 더 추가할 예정!