如何在Swift项目中使用FCUUID?

时间:2017-01-14 07:45:12

标签: ios swift cocoapods

FCUUID是一个Objective-C pod,我想将它集成到我的Swift项目中。

我的podfile:

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'

target 'ME' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for ME
  pod 'PayPal-iOS-SDK'
  pod 'FCUUID'
end

然后我尝试了导入FCUUID模块的方法:

  1. 直接使用let a = FCUUID()
  2. 添加网桥标头和#import "FCUUID.h"(找不到'FCUUID.h'文件)
  3. 但这一切都失败了。

    那么将FCUUID导入Swift项目的正确方法是什么?

    PS:

    我已尝试过来自How to use Objective-C Cocoapods in a Swift Project?的所有方法,但它只是失败了......

0 个答案:

没有答案