에러처리

[Swift] outlet connection error / 스토리보드 파일 연결 에러

moonkey 2023. 2. 27. 22:45

문제

storyboard에서 아울렛으로 table view를 드래그해서 연결하려는데 해당 ViewController가 연결되지 않았다는 에러가 발생했다. 우측 Identity Inspector에서 연결된 클래스를 확인해도 정상적으로 연결되어 있었다. 

 

해결

cmd + B로 리빌드 후 재시도 결과 정상적으로 연결되었다. 

 

 

참고

https://developer.apple.com/forums/thread/76730

 

Can't connect outlets in IB | Apple Developer Forums

I'm using a storyboard for a project I've been working on for sometime. A couple of days ago I added a new label to a view controller, tried to connect it to outlet and wasn't able to (by wasn't able to I mean I right clicked on the label, clicked on New R

developer.apple.com