0

我正在使用 Xcode 版本 8.3.3,尝试使用来自https://github.com/4taras4/CountryCode的国家/地区选择器视图。我手动将 CountryPicker 文件夹拖放到我的 xcode 项目中。但是,导入 CountryPicker 时出现错误(错误是“没有这样的模块 'CountryPicker'”)有没有人可以帮助解决它并教我如何开始使用它?

import UIKit
import MessageUI
import CountryPicker

class ViewController: UIViewController, , CountryPickerDelegate {
4

1 回答 1

1
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!


target 'YourTArgetNAme' do
  pod 'CountryPickerSwift', '1.4.4'
end

尝试将其安装为 pod

于 2017-10-19T10:51:43.940 回答