2013-11-27 50 views
1

我使用的Xcode 5.我只是得到了一些錯誤,他說:解析錯誤iPhone的Retina(4英寸64位)

ld: warning: ignoring file /Users/wog-khatzpetalio/Desktop/LiveGateApp/NoInterfaceBuilder/LiveGate/Parse.framework/Parse, missing required architecture x86_64 in file /Users/wog-khatzpetalio/Desktop/LiveGateApp/NoInterfaceBuilder/LiveGate/Parse.framework/Parse (3 slices) 
Undefined symbols for architecture x86_64: 
    "_OBJC_CLASS_$_PFObject", referenced from: 
     objc-class-ref in LiveGate.o 
    "_OBJC_CLASS_$_PFQuery", referenced from: 
     objc-class-ref in LiveGate.o 
    "_OBJC_CLASS_$_Parse", referenced from: 
     objc-class-ref in AppDelegate.o 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

我的應用程序在所有模擬器的工作除了iPhone 64位。 這個錯誤的可能原因是什麼?

回答

0

這意味着你沒有正確包含在你的項目中的解析庫。有可能是某些東西阻止了它的鏈接,例如,如果解析庫不支持armv64,並且您在項目中使用了默認的一組體系結構。

相關問題