xcode 3

not available in automatic reference counting mode

XCode로 프로젝트를 하다 위와 "not available in automatic reference counting mode" 라는 에러가 발생함  AutoMatic Reference Counting Mode를 사용할수 없다는 이슈로 나 같은 경우 기존에 cpp로 작성된 코드를 xcode에 넣었다가 발생하였다. 해결방법: Automatic Reference Counting을 사용할수 없는거니 사용하지 않게 세팅 하면 된다Project의 BuildSetting에 들어가 Objective-C Automatic Reference Counting을 No로 설정한다

Issue Tracking 2024.07.08

Xcode Build Folder 바뀐 위치

Unity용 mac osx Plugin을 개발하려고 하다가 bundle을 빌드 하는데 빌드하고 나온 bundle 위치를 찾을 수가 없었다. 예전에는 xcode안에서 볼 수 있었던거 같은데 이제는 어디있는지 알수 없어 찾다가 위치를 알게되었다. ~Library/Developer/Xcode/DerivedData 로 이동하면 나의 xcode project들이 있는데 거기서 해당되는 프로젝트로 들어가 Build/Products/Debug | Release 로 가면 찾을 수 있다.

Issue Tracking 2022.01.13