본문 바로가기

develop

(25)
[iTunes Connect] In-App Purchases: missing metafile In-App Purchases ! missing metafile 인앱 상품 설정이 더 필요한 상태. Localizations 항목을 하나 이상 작성함. Review Informaion 항목을 모두 작성함.
[Unity] iOS Runtime Error: Ran out of trampolines of type 2 ! Ran out of trampolines of type 2 "trampolines"이라는 오브젝트의 사이즈에 관한 에러. 현재 유니티 버전( 5.4.0f3 )에서는 AOT 컴파일 옵션을 이용해서 이 문제를 해결할 수 있음. "Player Settings > Other Settings > AOT option" 란에 "nimt-trampolines=512" 입력 후 빌드.( 512 이상일 수도 )
[Xcode] Apple Mach-O Linker Error: Undefined symbols for architecture arm64 ! Apple Mach-O Linker Error !! Undefined symbols for architecture arm64 !! ld: symbol(s) not found for architecture arm64 !! clang: error: linker command failed with exit code 1 (use -v to see invocation) 선언되지 않은 심볼 참조 에러. 아키텍쳐가 문제가 되는 경우는 외부 모듈을 사용할 때 아키텍쳐 제한이 있을 수 있다는 말. 만약 개발환경이 pc이고, 버전 컨트롤 프로그램을 사용해서 mac에서 빌드할 경우, 버전 컨트롤 프로그램 설정의 ignore list에 *.a 가 있는지 확인하고 있다면 제거하고 동기화 후 빌드.
원의 값 용어 radian = 라디안 = 호도각 degree = 디그리 = 일반각 radian과 degree 간의 변환. radian = degree * pi / 180 degree = radian * 180 / pi 준비한 원 중점 : ( x, y ) 반지름 : r 원의 테두리와 원의 중점에서 호도각( radian ) t로 뻗어나간 직선의 교차점( x', y' ) 구하기. x' = x + ( r * cos( t ) ) y' = y + ( r * sin( t ) ) 원 테두리 위에 있는 특정 점 좌표의 x' 값으로 y' 값 구하기. x' = x + ( r * cos( t ) ) t = arccos( ( x' - x ) / r ) y' = y + ( ..

반응형