【发布时间】:2013-06-15 04:40:18
【问题描述】:
当我尝试对我的应用程序进行模糊处理时,我不断收到这些错误
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_PayPalPayment", referenced from:
objc-class-ref in ViewController.o
"_OBJC_CLASS_$_PayPalPaymentViewController", referenced from:
objc-class-ref in ViewController.o
"_PayPalEnvironmentNoNetwork", referenced from:
-[ViewController Pay:] in ViewController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
【问题讨论】:
-
是的,这是 Objective-C
-
我添加了objective-c标签。我的知识很少,但希望这个标签能吸引更多有知识的人。
-
在模拟器上,PayPal SDK 不工作。您只能在 armv6、armv7、armv7s 或 arm64 等真实设备的架构上编译它。不支持架构
i386(模拟器使用的架构)。
标签: ios iphone objective-c paypal