본문 바로가기
Swfit

Cannot find AF in scope - Alamofire 관련 에러

by GGShin 2022. 11. 10.

Cocoapods를 사용해서 Alamofire를 install 했지만, XCode에서 AF를 사용하려고 할 때 아래와 같은 에러가 발생했습니다.

Cannot find AF in scope
 

다행히 StackOverFlow에서 제안한 방법이 해결에 도움을 주었습니다. 

XCode에서 Product -> Scheme -> Manage Schemes 으로 들어간 다음, Alamofire 항목을 true로 바꾸어 주니 해결되었습니다.

 

자세한 내용이나 해당 에러의 다른 해결법은 아래 링크를 참고하시면 됩니다!

https://stackoverflow.com/questions/37385275/xcode-cant-find-alamofire-error-no-such-module-alamofire

 

Xcode can't find Alamofire, error: No such module 'Alamofire'

I'm trying to include Alamofire in my Swift project following the github(https://github.com/Alamofire/Alamofire#cocoapods) instruction. I've created a new project, navigated to the project direct...

stackoverflow.com

 

 

반응형

'Swfit' 카테고리의 다른 글

NavigationBar 색상 및 타이틀 색상 변경하기  (0) 2022.11.12
URLComponents  (0) 2022.11.11
Protocol extension  (0) 2022.11.02
frame .zero로 설정하는 이유?  (0) 2022.10.31
Method(메서드)란?  (0) 2022.10.25