2014-11-24 3 views
0

DisplayCandy는 iOS 용 애니메이션 프레임 워크입니다. iOS 7.x/8.x에서 iOS 6.x 애니메이션을 모방하기 위해 (저자의 허가를 받아) 수정하려고합니다. 첫째로, 나는 원래의 코드는 아이폰 OS 8.x의에 근무 있는지 확인하고 싶었지만 터미널에 "포장을"실행할 때이 일이 : 나는이 프로젝트 파일과 모두에서 THEOS 심볼릭 링크를 설정 한DisplayCandy를 만들려고 할 때 터미널에서이 오류가 발생합니다

Making all in displaycandysettings... 
Making all for bundle DisplayCandySettings... 
Copying resource directories into the bundle wrapper... 
Compiling DCSettingsListController.m... 
Linking bundle DisplayCandySettings... 
Stripping DisplayCandySettings... 
Signing DisplayCandySettings... 
Making all for tweak DisplayCandy... 
Compiling DCFunctions.m... 
DCFunctions.m:3:10: fatal error: 'GraphicsServices/GraphicsServices.h' file not 
     found 
#include <GraphicsServices/GraphicsServices.h> 
     ^
1 error generated. 
make[2]: *** [obj/DCFunctions.m.4c382f22.o] Error 1 
make[1]: *** [internal-library-all_] Error 2 
make: *** [DisplayCandy.all.tweak.variables] Error 2 

환경 설정 패널의 파일 코드는 here입니다. 나는 원래 조정할 수있는 개발자가 아니지만 iOS 6 애니메이션을 모방하도록 수정하려고합니다. 오류를 수정하려면 어떻게합니까? 파일이 누락 된 것 같지만이 파일을 어디에서 얻을 수 있는지, 파일을 어디에 둘 것인지 알 수 없습니다. OS X 10.10.1에서 MacBook Pro를 사용하고 iOS 8.1을 실행하는 iPod touch 5 세대에 배포하려고합니다.

답변

1

당신이 거기에서 다루고있는 정말 오래된 프레임 워크입니다. GraphicsServices은 iOS 3.x 및 4.x의 문서화되지 않은 헤더의 일부입니다. 그것은 https://github.com/kennytm/iphone-private-frameworks GitHub 프로젝트에서 기인합니다.

가져 오기 경로 GraphicsServices/GraphicsServices.h을 지정하면 컴파일 오류를 수정하기 위해 프로젝트의 루트 수준에 GraphicsServices 폴더를 넣어야합니다.

관련 문제