0

I am using Xcode Version 8.3.3, trying to use country pickerview from https://github.com/4taras4/CountryCode. I manually just drag and drop CountryPicker folder to my xcode project. However, i got error when import CountryPicker (error is "No such module 'CountryPicker'") Is anyone can help to solve it and teach me how to start using it?

import UIKit
import MessageUI
import CountryPicker

class ViewController: UIViewController, , CountryPickerDelegate {
Eric Chong
  • 495
  • 1
  • 7
  • 21

1 Answers1

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


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

try installing it as a pod

Enea Dume
  • 3,014
  • 3
  • 21
  • 36