이슈
- xcode 빌드시 ARC(Automatic Reference Counting)모드가 on되어 컴파일시 에러가 발생하는 현상
해결
ARC모드를 off시킨다
- xcode에서 전체 비활성화 하기 : https://stackoverflow.com/questions/47815421/disable-arc-in-xcode-project
- Unity에서 파일별로 비활성화 하기 : https://answers.unity.com/questions/888319/ios-disable-arc-on-xcode-projects.html
- c# 코드에서 변경하기 : https://forum.unity.com/threads/how-to-enable-weak-references-in-xcode-via-post-build-script.532377/
모바일/iOS