2011-11-24 3 views
0

ipd pdf 뷰어 용 Reddle 키트를 구입했습니다. 데모 프로그램을 실행하려고하면 다음 오류가 발생합니다.Running RDPDFKitDemo_1.2

Ld /Users/svp/Library/Developer/Xcode/DerivedData/RDPDFKitSample-gjablgzmrirtqteckhbcytapkwcc/Build/Products/Debug-iphonesimulator/RDPDFKitSample.app/RDPDFKitSample normal i386 
cd /Users/svp/Desktop/RDPDFKitDemo_1_2 
setenv MACOSX_DEPLOYMENT_TARGET 10.6 
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" 
/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-g++-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -L/Users/svp/Library/Developer/Xcode/DerivedData/RDPDFKitSample-gjablgzmrirtqteckhbcytapkwcc/Build/Products/Debug-iphonesimulator -L/Users/svp/Desktop/RDPDFKitDemo_1_2/RDPDFKit.embeddedframework/RDPDFKit.framework/Versions/A -F/Users/svp/Library/Developer/Xcode/DerivedData/RDPDFKitSample-gjablgzmrirtqteckhbcytapkwcc/Build/Products/Debug-iphonesimulator -F/Users/svp/Desktop/RDPDFKitDemo_1_2/RDPDFKit.embeddedframework -filelist /Users/svp/Library/Developer/Xcode/DerivedData/RDPDFKitSample-gjablgzmrirtqteckhbcytapkwcc/Build/Intermediates/RDPDFKitSample.build/Debug-iphonesimulator/RDPDFKitSample.build/Objects-normal/i386/RDPDFKitSample.LinkFileList -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -framework SystemConfiguration -framework RDPDFKit -framework Security -framework OpenGLES -framework QuartzCore -lz -framework CoreText -framework MessageUI -weak_framework UIKit -weak_framework Foundation -framework CoreGraphics -o /Users/svp/Library/Developer/Xcode/DerivedData/RDPDFKitSample-gjablgzmrirtqteckhbcytapkwcc/Build/Products/Debug-iphonesimulator/RDPDFKitSample.app/RDPDFKitSample 

Undefined symbols for architecture i386: 
    "_OBJC_CLASS_$_NSFileCoordinator", referenced from: 
     objc-class-ref in RDPDFKit(libRDPDFKit.a-i386-master.o) 
    "_OBJC_CLASS_$_UIReferenceLibraryViewController", referenced from: 
     objc-class-ref in RDPDFKit(libRDPDFKit.a-i386-master.o) 
ld: symbol(s) not found for architecture i386 
collect2: ld returned 1 exit status 

이 문제를 어떻게 해결할 수 있습니까?

답변

2

iOS 4 SDK로 제작하는 것을 지원하지 않습니다. iOS 5 SDK로 빌드해야합니다. 애플리케이션은 iOS 4.0을 사용하는 기기에서 계속 실행할 수 있습니다.

Danil Somsikov Readdle Inc.