관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] git - lfs 설치, (NMapsMap사용시 _OBJC_CLASS_$ 오류 해결) 본문

Git, CocoaPods, Xcode, Shell

[iOS - swift] git - lfs 설치, (NMapsMap사용시 _OBJC_CLASS_$ 오류 해결)

jake-kim 2020. 5. 14. 13:48

_OBJC_CLASS_$ 오류

www.navermaps.github.io/ios-map-sdk/guide-ko/1.html

NMapsMap API에 관한 사용을 세팅하다보면 "_OBJC_CLASS_$" 오류발생

git - lfs 설치하면 해결

 

1. brew설치

www.brew.sh/index_ko

 

2. terminal 창

$ brew install git-lfs
$ cd 프로젝트폴더
$ git-lfs install

// cache 지우기
// pod cache clean NMapsMap

// pod에서 pod 'NMapsMap' 지운 후
$ pod install

// pod 'NMapsMap' 다시 기입한 후
$ pod install

 

3. Command Line Tools추가 했는지 체크

xcode -> "cmd+," -> Locations탭 -> "Command Line Tools"에 다음과 같이 비어있으면 추가

이것을 추가

 

에러 해결 성공

Comments