添加条带pod给了我未定义的架构x86_64:错误

时间:2015-05-13 08:08:06

标签: ios xcode stripe-payments xcode-6.2 applepay

我正在使用Stripe / Apple pay来实现交易。 我在Stripe.h中使用的方法:

[Stripe createTokenWithPayment:payment
                    completion:^(STPToken *token, NSError *error) 
{
    //my implementation
}]

我未能做到的事情:

  • 为32位架构构建项目。

我已经尝试过:

  1. 添加其他链接器标志。
  2. 仅将Build Active Architecture设置为YES。
  3. 设置架构arm64,armv7,armv7s。
  4. 移动基础框架。
  5. 再次删除和添加框架。
  6. Error :
    Undefined symbols for architecture x86_64:
      "_OBJC_CLASS_$_Stripe", referenced from:
          objc-class-ref in ViewController.o
         (maybe you meant: _OBJC_CLASS_$_StripeView)
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    

    PS:StripeView是我的不同类。

0 个答案:

没有答案